发布网友 发布时间:2023-11-17 20:46
共3个回答
热心网友 时间:2024-11-16 14:00
<html>
<body>
<script type="text/javascript">
function myFunction()
{
var flag=false;
var x="",y="";
x=document.getElementById("user").value;
y=document.getElementById("password").value;
var tip=document.getElementById("tipMsg");
if(x==""||y==""){
tip.innerHTML="用户名或密码不能为空!";
}else if(x=="wu"&& y=="123456") {
tip.innerHTML="";
flag=true;
}else{
tip.innerHTML="用户名或密码错误!";
}
return flag;
}
</script>
<form action="2.html" medhod="get" onsubmit="return myFunction()">
<p>用户:
<input id="user" type="text" name="user" /></p>
<p>密码:
<input id="password" type="password" name="password" /></p><br/>
<span id="tipMsg" style="color:red;"></span><br/>
<input type="submit" value="确定" />
</from>
<p id="mess"></p>
</body>
</html>
代码规范很重要
热心网友 时间:2024-11-16 14:00
将判断改下。
热心网友 时间:2024-11-16 14:00
if(x!="wu"||y!=123456) 中“||”替换成"&&"