请注意,本文编写于 3087 天前,最后修改于 2237 天前,其中某些信息可能已经过时。
js代码
<script type="text/javascript">
function check(){
var nameValue=window.document.getElementById("name").value;
var pasValue=window.document.getElementById("password").value;
if (nameValue == "")
{
window.alert("帐号不能为空!");
return false;
}else if (pasValue == "")
{
window.alert("密码不能为空!");
return false;
}
return true;
}
</script>
html代码
<form action="1.php" method="post" onsubmit="return check()">
<p>帐号: <input id="name" type="text" name="name" /></p>
<p>密码: <input id="password" type="text" name="password" /></p>
<input type="submit" value="登录"/>
</form>
5 条评论
document.getElementById("name").value==""&&alert("帐号不能为空!");
在面对这些强敌之前...一定要先将眼前敌人逐个打败吧。
<form action="1.php" method="post" onsubmit="return check()">
<p>帐号: <input id="name" type="text" name="name" required/></p> <p>密码: <input id="password" type="password" name="password" required/></p> <input type="submit" value="登录"/> </form>賣蔥大神
有个更简单的方法:
帐号:
密码: