본문 바로가기
javascript

체크박스 체크 했을 때 이벤트 checked

by 바나냥 2020. 4. 10.
$("#Checked").on("click", function(){
  if ($(this).is(':checked') == true){
    $("#basic_companyId").hide();
    $("#a_companyId").show();
  }else{
    $("#basic_companyId").show();
    $("#a_companyId").hide();
  }
});

댓글