您好,登錄后才能下訂單哦!
這篇文章主要介紹怎么判斷html中文本框內容是否為空,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1.通過PHP
語句判斷 :
html中內容:
<form action="submit.php" method="post"> <textarea name="text"></textarea> </form>
php中內容:
//submit.php <?php if(isset($_POST['text']) && strlen(trim($_POST['text']))>0) echo '不空'; else echo '空 '; ?>
2.通過JS
語句判斷
<html> <head> <title>JS判斷input是否為空</title> <script>function op(){ if(document.getElementById("ip").value==""){ alert("input為空"); }else{ alert(document.getElementById("ip").value); } } </script> </head> <body> <input id="ip" onblur="op()" value="JS"/> </body> </html>
3.通過required
屬性判斷
<html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>表單</title> </head> <body> <form action="" style="display: grid;" method="POST"> <div> <label for="username">賬號:</label> <input type="text" id="username" required> <!--required為必須填寫數據--> </div> </body> </html>
以上是“怎么判斷html中文本框內容是否為空”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。