一、: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(‘,‘);
时间: 2024-10-28 14:48:38