php設定文字方塊不能為空
通常我們需要判斷使用者提交的資訊是否為空,有前端js判斷和後端伺服器判斷兩種方式。
例如使用者表單程式碼
<form method="post" action="/check.php"> <input type="text" name="content" id="content" /> <input type="submit" value="提交" /> </form>
1、用js判斷:
<form method="post" action="/check.php"> <!-- 表单改成下面这样 (加了一个 onsubmit) --> <form method="post" action="/check.php" onsubmit="return checkForm()"> <!-- 然后写一个简单的js判断一下 --> <script type="text/javascript"> function checkForm(){ var tag = false; var checkText = document.getElementById("content").value; if ( checkText == "" || checkText == null ){ alert("未输入"); }else{ alert("已输入"); tag = true; } return tag; } </script>
這個js程式碼要放在表單所在的檔案裡, 或者你寫成js檔案導入也可以
比如說把頭尾的