gpt4 book ai didi

javascript - jquery 验证无法使用 jquery 验证插件

转载 作者:太空宇宙 更新时间:2023-11-04 00:03:41 24 4
gpt4 key购买 nike

我尝试使用 jquery 验证插件进行简单验证,但我无法实现它。当我单击提交按钮时没有任何改变,请帮助我

我在下面提到了代码,

提前致谢。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js" />
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.js" />
<script type="text/javascript">
$(document).ready(function () {
$('#btnSubmit').click(function () {
$('#logform').validate({
rules: {
txtUsr: {
required: true

},
txtPass: {
required: true

}

},
messages: {
txtUsr: {
required: 'Please enter username'
},
txtPass: {
required: 'Please enter password'
}
}

});

});

});

</script>
</head>
<body>
<div id='LoginDiv' style='width:400px;height:300px;background-color:green;'>
<form method="post" action="" id='logform'>
User Name : <input type="text" id='txtUsr' name='txtUsr' style='margin-top:12px'/>
<br/>
<br/>
Password : <input type="text" id='txtPass' name='txtPass' />
<br/>
<br/>
<input type="submit" id='btnSubmit' value='Submit' />
</form>
</div>
</body>
</html>

最佳答案

您不应该在点击事件处理程序中调用验证,而是作为初始化步骤:

$(document).ready(function () {
$('#logform').validate({
rules: {
txtUsr: {
required: true
},
txtPass: {
required: true
}
},
messages: {
txtUsr: {
required: 'Please enter username'
},
txtPass: {
required: 'Please enter password'
}
}
});
});

它将自己连接到 keyup 并提交事件。

关于javascript - jquery 验证无法使用 jquery 验证插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15618714/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com