jquery1.6下attr()不能使用
摘要:
今天无意之举,使用jquery1.6做个checkbox的全选效果。按照往常的写法: //全选 $("#ckball").bind("click", function () { if ($(this).attr("checked")) { $(".lb_two input[type=checkbox]").each(function () { $(this).attr("checked", true); }); } else { $(".lb_two input[type=checkb 阅读全文
posted @ 2011-06-17 16:29 BarneyZhang 阅读(731) 评论(2) 推荐(0) 编辑