问个Jquery的问题,removeAttr与attr_html/css_WEB-ITnose
程序员文章站
2022-06-13 23:03:51
...
$("#fun_menu_body :checkbox").removeAttr("checked"); // 先清空$.each(result.rows, function(i, n) {$("#fun_menu_body :checkbox[value='123']").attr("checked", "true");});
这个代码并不会按我的思路去实现。
我的思路是先删除所有的多先框,然后再去选择我要的checkbox。
如果上面的代码中,不要第一行(不删除全部),则会自动选择我指定的checkbox。
那要怎样才能先删除全部,再选择指定的呢?
回复讨论(解决方案)
prop 与 attr 的区别。
prop 与 attr 的区别。
搞定,谢谢
$("input[name='fun_menu_body']").removeAttr("checked");
这样就可以移除所有选中的了