问个Jquery的有关问题,removeAttr与attr
问个Jquery的问题,removeAttr与attr$(#fun_menu_body :checkbox).removeAttr(checked) // 先清空$.ea
问个Jquery的问题,removeAttr与attr
$("#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 的区别。