使用Jquery属性禁用多个复选框

使用Jquery属性禁用多个复选框

本文介绍了使用Jquery属性禁用多个复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! Hai all, 我的复选框列表中包含相同的ID, < input id ='CheckBox1'class ='chkbxq'type ='checkbox'name ='chkOrder'/> < input id ='CheckBox1'class ='chkbxq'type ='checkbox'name ='chkOrder'/> < input id ='CheckBox1' class ='chkbxq'type ='checkbox'name ='chkOrder'/> < input id ='CheckBox1'class ='chkbxq'type ='checkbox'name ='chkOrder'/ > 我希望使用ID隐藏此复选框,我试过这段代码 $(#CheckBox1)。attr(disabled,true ); 但第一个复选框仅禁用其他复选框已启用。我能做些什么来隐藏这四个复选框请给我们任何帮助。 问候 Sampath 解决方案 你的代码 Hai all, I have the list of checkbox with same ID like this, <input id='CheckBox1' class='chkbxq' type='checkbox' name='chkOrder' /> <input id='CheckBox1' class='chkbxq' type='checkbox' name='chkOrder' /> <input id='CheckBox1' class='chkbxq' type='checkbox' name='chkOrder' /> <input id='CheckBox1' class='chkbxq' type='checkbox' name='chkOrder' />and i want to hide this checkbox using ID, i tried this code $("#CheckBox1").attr("disabled", true); but the first checkbox only disabled others are enabled. what can i do for hide these all the four checkboxes any help please.RegardsSampath 解决方案 这篇关于使用Jquery属性禁用多个复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-13 13:58