标签:style blog io color ar 使用 sp div on
获取 <inpout type="checkbox" value="1" /> 多选项的value
/*获取checkbox的全部选中项 使用方法: FUNC_getCheckeds($(‘tr td‘).find(‘input[type=checkbox]‘)); */ function FUNC_getCheckeds(_target){ var _checkedArr = []; _target.each(function(index, element) { var _this = $(this); _this.prop(‘checked‘)&&_checkedArr.push(_this.val()); }); return _checkedArr; } //返回数组 如:[332,233,45,656,767,343]
标签:style blog io color ar 使用 sp div on
原文地址:http://www.cnblogs.com/enone/p/4096850.html