gpt4 book ai didi

javascript - 无法使用 jQuery 在 Chrome 中将复选框设置为已选中

转载 作者:行者123 更新时间:2023-11-30 12:48:09 25 4
gpt4 key购买 nike

我有一些代码在最新版本的 chrome (32.0.1700.107) 中损坏了。 jQuery 版本是 1.10.1。这段代码去年一直在其他浏览器中运行。它在 IE8 中可以正常工作。代码的关键部分如下 -

var stateWideCb = $('.showStatewide input');
stateWideCb.change(function () {
var b = $(this).is(':checked');
$('.showRegion input').attr('checked', b);
});

发生的情况是,在前两次单击 Master 复选框后,代码停止工作。

你可以在http://jsfiddle.net/photo_tom/dXczB/1/看到它

最佳答案

改变:

.attr('checked', b);

.prop('checked', b);

jsFiddle example

作为jQuery docs on .attr()状态:

To retrieve and change DOM properties such as the checked, selected, or disabled state of form elements, use the .prop() method.

关于javascript - 无法使用 jQuery 在 Chrome 中将复选框设置为已选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21864916/

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