//获取复选框的自定义属性did的值
$(function() {
$("input[type=checkbox]").on("click", function () {
var vIds = "";
$("input:checked").each(function() {
vIds += $(this).attr(‘did‘) + ",";
});
if (vIds.length > 0) {
vIds = vIds.substring(0, vIds.length - 1);
}
});
});
function tijiao(){
//获取复选框的值
var spCodesTemp = "";
$(‘input:checkbox[name=h]:checked‘).each(function(i){
if(0==i){
spCodesTemp = $(this).val();
}else{
spCodesTemp += (","+$(this).val());
}
});
alert(spCodesTemp);
}
时间: 2024-10-10 05:54:20