gpt4 book ai didi

javascript - 使用 preventDefault 后,为什么我不能用 jquery 选中一个框?

转载 作者:行者123 更新时间:2023-11-30 18:07:04 25 4
gpt4 key购买 nike

为什么下面的代码不起作用。我阻止了事件的默认操作。那我还是想勾选这个框。

html

<input type="checkbox" class="checkbox" />

javascript

$('.checkbox').click( function(e) {
e.preventDefault();
// some logic happens... now i may decide to check the box (in this case we want to check it for testing)
$('.checkbox').prop('checked',true);
});

您会认为单击复选框仍会选中该框..但它不会。检查 fiddle 以了解我的意思。

http://jsfiddle.net/5KDH8/

我也尝试过使用 attr 函数,但没有任何运气。

最佳答案

您必须将设置“checked”属性的代码放在单独的事件循环中:

setTimeout(function() { $('.checkbox').prop('checked', true); }, 1);

浏览器或库必须在事件处理程序返回后取消设置复选框,因为它会在调用处理程序之前设置它以响应点击。

关于javascript - 使用 preventDefault 后,为什么我不能用 jquery 选中一个框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15557038/

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