2012/11/12

jQuery, CheckBox, DropDownList/ComboBox

DropDownList/ComboBox


$("#ComboBox").val();
$("#ComboBox option:selected").text();
$("#ComboBox").change(function() { /*  */ });
$("#ComboBox").val(1);

CheckBox

if ($("#IsCharge").attr("checked")) { };
$("#IsCharge").attr('checked', true);
$('input[name=foo]').attr('checked', true);
$("input[type='checkbox']:checked").each(    
      function() {      
            /*  */   
      }
);

 

 


댓글 없음:

댓글 쓰기

가장 많이 본 글