null 값 체크
빈 값 체크
- input : text / password / radio / checkbox
- select
See the Pen 회원가입1 by Dorad (@doradji) on CodePen.
https://roomkok-ic.tistory.com/44
[jQuery] check 박스 값 가져오기
input 태그 생성 값1 값2 값3 1) 값 확인 // id $('input:checkbox[id="checkBox의 id값"]').val(); // name $('input:checkbox[name="checkBox의 name값"]').val(); 2) 선택된 개수 확인 $("input[name='checkBox..
roomkok-ic.tistory.com
https://roomkok-ic.tistory.com/38
[HTML] select 박스 값 가져오기
select 태그 생성 값1 값2 값3 1) 선택된 값 확인 - id로 선택 $("[#select박스id] option:selected").val(); 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <select id="userListSB"> <option value="홍길동">홍길동</..
roomkok-ic.tistory.com
https://roomkok-ic.tistory.com/36
[Javascript / jQuery] input Radio Button 값 가져오기/설정하기
input 태그 생성 값1 값2 값3 A B C 값 가져오기 Radio Button 값 확인 $("input[name='radio의 name값']:checked").val(); Radio Button 1개 선택 - 동일한 name 속성을 추가하여 1개만 선택할 수 있도록 한다...
roomkok-ic.tistory.com
https://roomkok-ic.tistory.com/26
[JavaScript / jQuery] input text 값 가져오기/설정하기
input 태그 생성 값 가져오기 function getinput() { // id 값으로 가져오기 var id = $('#inputID').val(); console.log(id); // class 값으로 가져오기 var inputclass = $('.inputCLASS').val(); console.log(i..
roomkok-ic.tistory.com