首页上一页 1 下一页尾页 1 条记录 1/1页
JavaScript问题
发表在PHP图书答疑
2016-03-04
是否精华
是
否
版块置顶:
是
否
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<form name="myform" method="post" action="">
<table width="532" height="183" align="center" border="1"cellpadding="0" bgcolor="#CCFF66" background="">
<tr><td height="71" colspan="2" align="center"> </td></tr>
<tr>
<td width="281" align="left">
用户名:<input name="user" type="text" id="user" size="20"><br><br>
密 码:<input name="pwd" type="password" id="pwd" size="20">
</td>
</tr>
<tr>
<td height="43" align="center">
<input type="submit" name="submit" onclick="mycheck();" value="登录">
<input type="reset" name="submit2" value="重置">
</td>
</tr>
</table>
</form>
<script language="javascript">
function mycheck(){
if(myform.user.value==""){
alert("用户名不能为空!!");
myform.user.focus();
return false;
}
if(myform.pwd.value==""){
alert("用户密码不能为空!!");
myform.pwd.focus();
return false;
}
}
</body>
</html>
程序不能正常运行 ,不能弹出:"用户名不能为空" 或 "密码为空"
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<form name="myform" method="post" action="">
<table width="532" height="183" align="center" border="1"cellpadding="0" bgcolor="#CCFF66" background="">
<tr><td height="71" colspan="2" align="center"> </td></tr>
<tr>
<td width="281" align="left">
用户名:<input name="user" type="text" id="user" size="20"><br><br>
密 码:<input name="pwd" type="password" id="pwd" size="20">
</td>
</tr>
<tr>
<td height="43" align="center">
<input type="submit" name="submit" onclick="mycheck();" value="登录">
<input type="reset" name="submit2" value="重置">
</td>
</tr>
</table>
</form>
<script language="javascript">
function mycheck(){
if(myform.user.value==""){
alert("用户名不能为空!!");
myform.user.focus();
return false;
}
if(myform.pwd.value==""){
alert("用户密码不能为空!!");
myform.pwd.focus();
return false;
}
}
</body>
</html>
程序不能正常运行 ,不能弹出:"用户名不能为空" 或 "密码为空"