js验证提交的表单和php验证表单哪个好

 我来答
龙氏风采
2017-03-30 · 知道合伙人互联网行家
龙氏风采
知道合伙人互联网行家
采纳数:5849 获赞数:12816
从事互联网运营推广,5年以上互联网运营推广经验,丰富的实战经

向TA提问 私信TA
展开全部
1、方法一
HTML代码:
[html] view plain copy 在CODE上查看代码片派生到我的代码片
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="login.php" method="post">
用户帐号:<input type=text name="userId" size="18" value="">
<br>
登录密码:<input type="password" name="password" size="19" value=""/>
<input type=submit name="submit1" value="登陆" onclick="return check(this.form)">
</form>
</body>
</html>
JS代码:
[php] view plain copy 在CODE上查看代码片派生到我的代码片
<script type="text/javascript">
function check(form) {
if (form.userId.value == '') {
alert("请输入用户帐号!");
form.userId.focus();
return false;
}
if (form.password.value == '') {
alert("请输入登录密码!");
form.password.focus();
return false;
}
return true;
}
</script>
2、方法二
HTML代码:
[html] view plain copy 在CODE上查看代码片派生到我的代码片
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="login.php" method="post" onsubmit="return check(this)">
用户帐号:<input type=text name="userId" size="18" value="" >
<br>
登录密码:<input type="password" name="password" size="19" value=""/>
<input type=submit name="submit1" value="登陆">
</form>
</body>
</html>
JS代码:
[javascript] view plain copy 在CODE上查看代码片派生到我的代码片
<script type="text/javascript">
function check(form) {
if (form.userId.value == '') {
alert("请输入用户帐号!");
form.userId.focus();
return false;
}
if (form.password.value == '') {
alert("请输入登录密码!");
form.password.focus();
return false;
}
return true;
}
</script>
3、方法三
HTML代码:
[html] view plain copy 在CODE上查看代码片派生到我的代码片
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="login.php" name="myform" method="post">
用户帐号:<input type=text name="userId" size="18" value="" >
<br>
登录密码:<input type="password" name="password" size="19" value=""/>
<input type=button name="submit1" value="登陆" onclick="check(this.form)">
</form>
</body>
</html>
JS代码:
[javascript] view plain copy 在CODE上查看代码片派生到我的代码片
<script type="text/javascript">
function check(form) {
if (form.userId.value == '') {
alert("请输入用户帐号!");
form.userId.focus();
return false;
}
if (form.password.value == '') {
alert("请输入登录密码!");
form.password.focus();
return false;
}
document.myform.submit();
}
</script>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zuoro803
2017-03-30 · TA获得超过202个赞
知道小有建树答主
回答量:330
采纳率:0%
帮助的人:144万
展开全部
js控制灵活,更为强大
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式