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>
예를 들어 시작과 끝의