jquery中的submit方法怎么用?
submit()方法绑定在form表单元素上,当绑定的表单被提交时(通过点击按钮、按回车键等),会触发该方法。实例:
<form id="form1" autocomplete="off"> <input type="text" name="model.username"/> <input type="password" name="model.password"/> <input type="submit" value="登录" /> </form>
$('#form1').submit(function() { $.ajax({ url: '/index!login.do', data: $('#form1').serialize(), type: "POST", dataType: "json", cache: false, success: function(data) { if (data.login == true || data.login == "true") { // 登录成功 location.replace('/main/index.do'); } else { alert('登录失败!请检查用户名或密码'); } } });});
jQuery在谷歌浏览器下input标签不支持onchange?
不知道你是不是把方法已经注册了,jQuery('document').ready(function(){ jQuery(".productNum").bind("change",function(){ alert("dfdf"); }); });另外:建议将:$(".productNum").写成是:jQuery(".productNum").
jquery.validate如何在焦点移开的时候验证input的数据不为空?
-validate 规则: 如果没有填写只有在 onsubmit 的时候才提示未填写。。
默认 onfocusout 和 onkeyup true,
如果有其他验证,如minlength 等验证,在填写时,不满足就会在失去焦点的时候就验证错误。
就是没有输入,onfocusout 不会被触发。。(个人理解)

