gpt4 book ai didi

jquery - icheck 复选框未取消选中

转载 作者:行者123 更新时间:2023-12-01 01:13:27 29 4
gpt4 key购买 nike

我有以下表单界面 enter image description here

在这里,我使用了 icheck 复选框。当我手动选中和取消选中该复选框时,它工作正常,因为我编写了以下代码

//if checkbox "Product Feed Url" is unchecked,show the feed textbox
$('#crawlingUrl').on('ifUnchecked', function(event){
$("#feedUrl").show();
});

//if checkbox of "Product Feed Url" is checked,hide the feed textbox
$('#crawlingUrl').on('ifChecked', function(event){
$("#feedUrl").hide();
$("#feedUrl-error").hide();
});

单击取消按钮后,我重置表单元素并将其隐藏并显示商店列表 div。在取消按钮上,我还尝试使用以下选项取消选中复选框,但它们都不起作用。

//$("#crawlingUrl").iCheck('uncheck');
//$("#feedDiv").find('#crawlingUrl').iCheck('uncheck');
//$("#feedDiv .clsCheckBox").iCheck('uncheck');
$("input[name=crawlingUrl]").iCheck('uncheck');

当我再次打开表单输入值时,复选框并未取消选中。有人可以告诉我如何解决此问题吗?

检查元素的屏幕截图 enter image description here

最佳答案

而不是这个

$("input[name=crawlingUrl]").iCheck('uncheck');

试试这个

$("input[name=crawlingUrl]").removeAttr('checked').iCheck('update');

关于jquery - icheck 复选框未取消选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46376519/

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