我有以下jquery函数
$('#AddItem').one("click", function () {
//client side validation code
//if validation passes make an ajax call. after call returns redirect to another page
$(this).click(function () { return false; });
}
如果验证失败,该函数只触发一次。验证失败后有没有办法重新注册或重新绑定功能?
我添加了 .one 调用以防止双击。