val(2)
-
JQuery Select Box 제어
1. 선택된 값 읽기 $("#selectBox option:selected").val();$("select[name=name]").val(); 2. 선택된 이름 읽기 $("#selectBox option:selected").text(); 3. 선택된 위치 var index = $("#test option").index($("#test option:selected")); 4. 마지막 옵션 추가하기 $("#selectBox").append("Apples");$("#selectBox").append("After Apples"); 5. 첫번째 옵션 추가하기 $("#selectBox").prepend("Before Apples"); 6. 모든 옵션 없애고 추가하기 $("#selectBox").html("Some ..
2017.11.21 -
클릭한 태그 id, name, class, value 가져오기
1. id, name, class 가져오기! var getId=$(this).attr("id");var getName=$(this).attr("name");var getClass=$(this).attr("class"); 2. id, name, class로 value 가져오기! var idVal=$("#id").val();var nameVal=$("input[name=name]").val();var classVal=$(".class").val();
2017.11.21