发布网友 发布时间:2022-04-25 04:50
共4个回答
热心网友 时间:2022-04-25 17:10
<script type="text/javascript">
function validata()
{
//………………做验证的代码
return false;
}
</script>
</head>
<body>
<form action="www.baidu.com" name ="for" method="post" onsubmit="return validata();">
<input type="submit" value="tijiao">
</form>
</body>
热心网友 时间:2022-04-25 18:28
var isright=true;
document.body.form[0].onsubmit = function() {
if (isright) return true;
return false;
}
条件不符合:
isright = false;
alert("提示");
热心网友 时间:2022-04-25 20:03
js方法中验证完成后 return false
调用,return 方法()
热心网友 时间:2022-04-25 21:54
提示完后阻止表单提交就行了。return false