我有这个脚本
$('[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 =“已选中”,但收音机或复选框仍然 取消,并且请求:Laravel中的所有内容都看不到这一点。如何编辑此来执行此操作?
答案 0 :(得分:1)
您想使用.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()