页面已经用了jquery.validate.js,它已经对Input注册了Blur事件,现在我还想在Input注册Blur事件,写了如下代码:
$("table.formview").on("blur", "input", function () { });
结果F12查看,显示为jquery.validate.handler事件,我写的代码不生效,如何修改?谢谢指导。
首先确保你的元素不是动态生成的,然后确保你的选择器正确。
这样写呢?
$("table.formview").bind("blur", "input", function () { });
使用focusout,你监听的是input,在table上面注册blur没意义。