gpt4 book ai didi

javascript - 点击功能有问题

转载 作者:行者123 更新时间:2023-11-30 13:24:15 26 4
gpt4 key购买 nike

$('#delete').click(function (e) {
e.preventDefault();
var result = true;
if($('.checkbox:checked').length < 1) {
$.notifyBar({
cls: "error",
html: 'At least 1 checkbox must be checked.',
delay: 5000
});
result = false;
}
return result;
});

问题是如果一切顺利的话按钮不会提交表单有什么不妥吗?

最佳答案

e.preventDefault() 的调用阻止了提交表单的按钮的默认操作。您只需要在不希望提交发生时调用它。

$('#delete').click( function(e) {
if($('.checkbox:checked').length<1){
$.notifyBar({
cls: "error",
html: 'At least 1 checkbox must be checked.',
delay: 5000
});

// Invalid, stop the submit
e.preventDefault();
}
})

关于javascript - 点击功能有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9083439/

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