迴圈判斷每一input的值是否為空,程式碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script>
function yz(){
var m=document.getElementsByTagName("input");
for(var i=0;i<m.length;i++)
{
if(m[i].value==""||m[i].value==null)
alert("請填寫所有的空格!");
return false;
}
alert("成功!");
</script>
</head>
<body>
<input type="text">
<input type="text" />
</body>
</html>
迴圈判斷每一input的值是否為空,程式碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script>
function yz(){
var m=document.getElementsByTagName("input");
for(var i=0;i<m.length;i++)
{
if(m[i].value==""||m[i].value==null)
{
alert("請填寫所有的空格!");
return false;
}
}
alert("成功!");
}
</script>
</head>
<body>
<input type="text">
<input type="text" />
<input type="text" />
<input type="text" />
</body>
</html>