jsp 예제1 [Jquery] 자주 사용하는 jquery예제 1. input, select박스 선택 불가 처리 $('#test').attr('disabled', true); 2. input, select 박스 선택 불가 -> 가능 처리 $("#test").attr("disabled", false); 3. input radio 박스 value와 name을 이용한 disabled $('input[type=radio][name=test][value=40]').prop("disabled", true); 4. radio 박스 값 가지고오기 $("input:radio[name='test']:checked").val() 5. input 박스 값 가져오기 $("#test").val(); 6. input 박스 안의 텍스트 길이 값 가져오기 var len = $("#test").v.. 2019. 10. 11. 이전 1 다음