- jquery 操作checkbox
- function checkAll()
- {
- $('input[type="checkbox"][name="item"]').attr("checked", true);
-
-
- }
function checkAll()
{
$('input[type="checkbox"][name="item"]').attr("checked", true);
// $('[name="item"]:checkbox').attr("checked", true);
}
- function checkFootball()
- {
- $("[name='item']:checkbox").each(function() {
- if (this.value == 'football')
- {
- this.checked = true;
- }
- })
- }
posted on 2011-08-31 19:40
王豪 阅读(197)
评论(0) 编辑 收藏 所属分类:
JQuery