标签:
一、:enabled 标签选择器 为所有启用的标签 赋相应属性
jQuery("input:enabled").each(function () {
this.checked = true;
});
二、.map 构建表单中所有值的列表
var values = jQuery(‘input:checkbox:checked.choose‘).map(function () {
return this.value;
}).get();
var orderIds = values.join(‘,‘);
官方案例$("p").append( $("input").map(function(){ return $(this).val(); })
.get().join(", ") );
$(‘:checkbox‘).map(function() {
return this.id;
})
.get().join(‘,‘);
标签:
原文地址:http://www.cnblogs.com/eric-gms/p/4252365.html