首頁  >  文章  >  web前端  >  如何判斷html中文字方塊內容是否為空

如何判斷html中文字方塊內容是否為空

autoload
autoload原創
2021-03-30 15:38:2811531瀏覽

如何判斷html中文字方塊內容是否為空

    判斷表單中的文字方塊的內容是否為空白的方法有很多:1.透過php語句判斷  2.透過js語句判斷3.透過html原生語句進行判斷。

1.透過PHP語句判斷:

#    html中內容:

<form action="submit.php" method="post">
<textarea name="text"></textarea>
</form>

    php內容:

//submit.php
<?php
if(isset($_POST[&#39;text&#39;]) && strlen(trim($_POST[&#39;text&#39;]))>0)
echo &#39;不空&#39;;
else
echo &#39;空 &#39;;
?>

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知識

以上是如何判斷html中文字方塊內容是否為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多