2011-07-07 84 views
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(); 
    }); 
+0

的一個維數組,你可以簡單地使用'。加入()' – Teneff

回答

0

我覺得這個代碼所有你想要的:

$('#mer').click(function() {  
    $(':checkbox[name="attr[]"]:checked').add(':checkbox[name="attr[]"]:not(:checked)').each(function(){ 
     var text = $(this).next("label").text(); 
     $('#ch').append($('<li/>').append($(this).clone()).append(text)); 
    }); 
    $(':checkbox:checked').attr('disabled', true); 
    $('.checklist').hide(); 
    $('#ch').show(); 
}); 

希望這有助於。乾杯

+0

非常感謝......我真的需要這一個:-) –

相關問題