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 设置多个复选框选中和取消选中的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

如何通过使用alpine js单击一个复选框来选中和取消选中所有复选框

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