jQuery 콤보 select 제어하기
jQuery로 선택된 값 읽기
$("#selectBox option:selected").val();
$("select[name=name]").val();
jQuery로 선택된 내용 읽기
$("#selectBox option:selected").text();
선택된 위치
var index = $("#test option").index($("#test option:selected"));
-------------------------------------------------------------------
// Add options to the end of a select
$("#selectBox").append("<option value='1'>Apples</option>");
$("#selectBox").append("<option value='2'>After Apples</option>");
// Add options to the start of a select
$("#selectBox").prepend("<option value='0'>Before Apples</option>");
// Replace all the options with new options
$("#selectBox").html("<option value='1'>Some oranges</option><option value='2'>More Oranges</option>");
// Replace items at a certain index
$("#selectBox option:eq(1)").replaceWith("<option value='2'>Some apples</option>");
$("#selectBox option:eq(2)").replaceWith("<option value='3'>Some bananas</option>");
// 지정된 index 값으로 select 하기
$("#selectBox option:eq(2)").attr("selected", "selected");
// text 값으로 select 하기
$("#selectBox").val("Some oranges").attr("selected", "selected");
// value 값으로 select 하기
$("#selectBox").val("2");
// 지정된 인덱스 값의 item 삭제
$("#selectBox option:eq(0)").remove();
// 첫번째 item 삭제
$("#selectBox option:first").remove();
// 마지막 item 삭제
$("#selectBox option:last").remove();
// 선택된 옵션의 text 구하기
alert($("#selectBox option:selected").text());
// 선택된 옵션의 value 구하기
alert($("#selectBox option:selected").val());
// 선택된 옵션 index 구하기
alert($("#selectBox option").index($("#selectBox option:selected")));
// SelecBox 아이템 갯수 구하기
alert($("#selectBox option").size());
// 선택된 옵션 앞의 아이템 갯수
alert($("#selectBox option:selected").prevAll().size());
// 선택된 옵션 후의 아이템 갯수
alert($("#selectBox option:selected").nextAll().size());
// Insert an item in after a particular position
$("#selectBox option:eq(0)").after("<option value='4'>Some pears</option>");
// Insert an item in before a particular position
$("#selectBox option:eq(3)").before("<option value='5'>Some apricots</option>");
// Getting values when item is selected
$("#selectBox").change(function() {
alert($(this).val());
alert($(this).children("option:selected").text());
});
출처 : http://blog.naver.com/findaday?Redirect=Log&logNo=121439508
'Web > javascript / jQuery' 카테고리의 다른 글
$.getJSON 에서 json 파일을 못읽고 404 에러가 뜰때 (4) | 2015.10.14 |
---|---|
페이지가 다 로드된 후에 뭔가를 실행하고 싶을때... (4) | 2015.10.13 |
[jquery] 셀렉트박스안의 모든 옵션의 value 를 가져오는 방법 (4) | 2015.04.28 |
[jquery] 텍스트박스 (textarea) 에서 엔터키 인지 및 동작하기 (8) | 2015.04.28 |
[jQuery] 배열에서 오브젝트를 제거할때 (8) | 2015.04.28 |