我有以下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调用以防止双击。