'jquery checkbox 전체 선택'에 해당되는 글 1건

  1. 2014.04.11 [Jquery] - Jquery CheckBox 전체 선택

[Jquery] - Jquery CheckBox 전체 선택

Jquery & Mobile 2014. 4. 11. 10:26
반응형

function MRKN_CheckBoxAllChecked() {

  var chkBox = $("#Content .searchArea table ul[name=affiliation] li input[name='tree[]']");

  var checked;

  

  if(chkBox.eq(0).prop("checked")) {

    checked = false;

  } else {

    checked = true;

  };

  

  chkBox.each(function(){

    var $this = $(this);

    $this.prop("checked", checked);

  });

}

반응형
: