gpt4 book ai didi

javascript - 如何对checkbox、radio做checked? Javascript

转载 作者:行者123 更新时间:2023-11-29 23:52:51 24 4
gpt4 key购买 nike

我有这个脚本

$('[data-toggle="wizard-checkbox"]').click(function(){
if( $(this).hasClass('active')){
$(this).removeClass('active');
$(this).find('[type="checkbox"]').removeAttr('checked');
} else {
$(this).addClass('active');
$(this).find('[type="checkbox"]').attr('checked','true');
}
});

他添加了 checked="checked"但单选框或复选框仍然是 检查并且请求:Laravel 中的所有内容都看不到这个。如何编辑此以执行此检查?

最佳答案

您想使用 .prop()

// Check all checkboxes found
jQuery('[type="checkbox"]').prop( "checked", true );

// Uncheck all checkboxes found
jQuery('[type="checkbox"]').prop( "checked", false );

有关更多详细信息,请阅读 jQuery docs on .prop()

关于javascript - 如何对checkbox、radio做checked? Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42449621/

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