JS 或者 VBS 都行(验证表单问题)
______详细代码如下_________<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN"><html><...
______详细代码如下_________
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="CSS.css" rel="stylesheet" type="text/css">
</head>
<body >
<table border="1" align="center">
<tr>
<td><form action="2.htm" method="post" name="表单" id="表单" onSubmit="return CheckForm()">
<script language="JavaScript" type="text/JavaScript">
function CheckForm()
{
alert("先弹出对话框 表示函数已经使用了");
if(document.表单.用户名.value=="")
{
alert("请输入用户名!");
document.UserLogin.text.focus();
return false;
}
if(document.表单.密码.value=="")
{
alert("请输入密码");
document.UserLogin.text.focus();
return false;
}
}
</script>
<table width="200" height="192" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="200" height="153" align="right" valign="bottom" background="登陆页面_01.jpg">
<table width="122" height="80" border="0" cellspacing="0">
<tr>
<td width="118" height="22"><input name="用户名" type="text" id="用户名" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="25"><input name="密码" type="text" id="密码" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="26" valign="bottom"> <input type="checkbox" name="checkbox" value="checkbox">
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="39"><input name="imgSUMBIT" type="image" id="imgSUMBIT" src="登陆页面_02.jpg" width="200" height="39" border="0"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
_______问题是________
可以验证 也可以弹出 但是页面直接就跳过去了 没有停止下来
希望弹出后 把提交的动作停止下来
_______回答满意的话给100分________ 展开
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="CSS.css" rel="stylesheet" type="text/css">
</head>
<body >
<table border="1" align="center">
<tr>
<td><form action="2.htm" method="post" name="表单" id="表单" onSubmit="return CheckForm()">
<script language="JavaScript" type="text/JavaScript">
function CheckForm()
{
alert("先弹出对话框 表示函数已经使用了");
if(document.表单.用户名.value=="")
{
alert("请输入用户名!");
document.UserLogin.text.focus();
return false;
}
if(document.表单.密码.value=="")
{
alert("请输入密码");
document.UserLogin.text.focus();
return false;
}
}
</script>
<table width="200" height="192" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="200" height="153" align="right" valign="bottom" background="登陆页面_01.jpg">
<table width="122" height="80" border="0" cellspacing="0">
<tr>
<td width="118" height="22"><input name="用户名" type="text" id="用户名" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="25"><input name="密码" type="text" id="密码" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="26" valign="bottom"> <input type="checkbox" name="checkbox" value="checkbox">
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="39"><input name="imgSUMBIT" type="image" id="imgSUMBIT" src="登陆页面_02.jpg" width="200" height="39" border="0"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
_______问题是________
可以验证 也可以弹出 但是页面直接就跳过去了 没有停止下来
希望弹出后 把提交的动作停止下来
_______回答满意的话给100分________ 展开
2个回答
展开全部
修改为:(测试通过)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="CSS.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
function CheckForm()
{
alert("先弹出对话框 表示函数已经使用了");
if(document.表单.用户名.value=="")
{
alert("请输入用户名!");
document.表单.用户名.focus();
return false;
}
if(document.表单.密码.value=="")
{
alert("请输入密码");
document.表单.密码.focus();
return false;
}
}
</script>
</head>
<body >
<table border="1" align="center">
<tr>
<td><form action="2.htm" method="post" name="表单" id="表单" onSubmit="return CheckForm()">
<table width="200" height="192" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="200" height="153" align="right" valign="bottom" background="登陆页面_01.jpg">
<table width="122" height="80" border="0" cellspacing="0">
<tr>
<td width="118" height="22"><input name="username" type="text" id="用户名" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="25"><input name="密码" type="text" id="密码" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="26" valign="bottom"> <input type="checkbox" name="checkbox" value="checkbox">
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="39"><input name="imgSUMBIT" type="image" id="imgSUMBIT" src="登陆页面_02.jpg" width="200" height="39" border="0"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="CSS.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
function CheckForm()
{
alert("先弹出对话框 表示函数已经使用了");
if(document.表单.用户名.value=="")
{
alert("请输入用户名!");
document.表单.用户名.focus();
return false;
}
if(document.表单.密码.value=="")
{
alert("请输入密码");
document.表单.密码.focus();
return false;
}
}
</script>
</head>
<body >
<table border="1" align="center">
<tr>
<td><form action="2.htm" method="post" name="表单" id="表单" onSubmit="return CheckForm()">
<table width="200" height="192" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="200" height="153" align="right" valign="bottom" background="登陆页面_01.jpg">
<table width="122" height="80" border="0" cellspacing="0">
<tr>
<td width="118" height="22"><input name="username" type="text" id="用户名" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="25"><input name="密码" type="text" id="密码" size="12" maxlength="8"></td>
</tr>
<tr>
<td height="26" valign="bottom"> <input type="checkbox" name="checkbox" value="checkbox">
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="39"><input name="imgSUMBIT" type="image" id="imgSUMBIT" src="登陆页面_02.jpg" width="200" height="39" border="0"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<td height="39"><input name="imgSUMBIT" type="image" id="imgSUMBIT" src="登陆页面_02.jpg" width="200" height="39" border="0"></td>
onclick 因该写在这里
然后在CheckForm()里,如果条件都满足加一句
document.UserLogin.submit();
onclick 因该写在这里
然后在CheckForm()里,如果条件都满足加一句
document.UserLogin.submit();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询