개인적인 정리

폼 요소 disable, readonly 설정 본문

Script & jQuery

폼 요소 disable, readonly 설정

yeon.Biju 2016. 12. 1. 15:55

폼 요소 disable, readonly 설정


$(this).attr("disabled", true);

$(this).attr("disabled", false);




$(this).attr("readonly", true);

$(this).attr("readonly", false);






Comments