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() {
/* */
}
);
댓글 없음:
댓글 쓰기