JS 设置复选框的选中与取消选中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 设置复选框的选中与取消选中相关的知识,希望对你有一定的参考价值。

// 设置选中 function setCheckboxClick(obj) { if(obj == null) { $.messager.alert(‘警告‘, "请选择要设置选中的项!",‘warning‘); } // alert(obj.value); var authorityId = obj.value; $.ajax({ type: ‘post‘, url: ‘getAuthorityByAuthorityId.action‘, data: {"authorityId" : authorityId}, dataType: ‘json‘, success:function(data) { console.info(data); var d = $.parseJSON(data); //$(":checkbox[name=authorityId]").prop("checked",false); // obj.checked = true; $(":checkbox[name=authorityId]").each(function(){ var currentAuthorityId = $(this).val(); for(var i = 0; i < d.length; i++) { if(currentAuthorityId == d[i].authorityId) { // $(this).prop("checked",true); if ($(this).prop("checked") == true) { $(this).prop("checked", false); } else { $(this).prop("checked",true); } } } }); }, error:function() { } });

以上是关于JS 设置复选框的选中与取消选中的主要内容,如果未能解决你的问题,请参考以下文章

javascript [jQuery单选框选中与取消选中应用]记录jQuery使用过程中单选框选中与取消选中的坑。 #JS #jQuery #input #radio

js实现点击选中,第二次点击取消选中状态

在纯js中选中和取消选中复选框时添加不同的确认消息

MFC中如何取消已选单选框的勾选状态?

js 怎么把所有选中的复选框 都变为 未选中状态

Ext JS 网格面板复选框被取消选中