0
如何打印在jQuery文檔()函數的多個數組值?如何在jquery html()函數中打印多個html元素?
$('#mer').click(function() {
var checked = [];
var attr = [];
var attr0 = [];
var unchecked = [];
//$('input[type="checkbox"]').each(function(){
$('input:checkbox[name="attr[]"]').each(function(){
//attr.push($(this).next("label").text());
if(this.checked){
checked.push(this);
attr.push($(this).next("label").text());
} else{
unchecked.push(this);
attr0.push($(this).next("label").text());
}
});
//checked check box show
for (j=0; j < checked.length; j++)
{
//alert(checked[j]);
$('#ch').append($('<li>').html(checked[j]+attr[j]);
}
//unchecked check box show
for (j=0; j < unchecked.length; j++)
{
//alert(checked[j]);
$('#ch').append($('<li>').html(unchecked[j]+attr0[j]);
}
$('input[type="checkbox"]:checked').attr('disabled', true);
$('.checklist').hide();
$('#ch').show();
});
的一個維數組,你可以簡單地使用'。加入()' – Teneff