gpt4 book ai didi

javascript - 即使选中复选框也会出现错误

转载 作者:行者123 更新时间:2023-11-28 13:29:05 26 4
gpt4 key购买 nike

从我发现的所有示例中,如果选中复选框,则使用 is(':checked') 应返回 true,否则返回 false。就我而言,这两种情况都会返回 false。我的错误是什么?

          {
xtype: 'checkbox',
boxLabel: 'Show message',
id: 'mainBox',
handler: function() {
alert($(this).is(':checked'));

}

最佳答案

根据ExtJS documentation ,我会尝试这个:

{
xtype: 'checkbox',
boxLabel: 'Show message',
id: 'mainBox',
handler: function (field , value) {
alert(value);
}
}

关于javascript - 即使选中复选框也会出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26609169/

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