리자

[펌] jQuery select box

· 2012-11-09 (금) 09:57:03 · 7470 · 1

jQuery로 선택된 값 읽기
$("#select_box option:selected").val();
$("select[name=name]").val();

jQuery로 선택된 내용 읽기
$("#select_box option:selected").text();

선택된 위치
var index = $("#test option").index($("#test option:selected")); 

-------------------------------------------------------------------

// Add options to the end of a select
$("#myselect").append("<option value='1'>Apples</option>");
$("#myselect").append("<option value='2'>After Apples</option>");

// Add options to the start of a select
$("#myselect").prepend("<option value='0'>Before Apples</option>");

// Replace all the options with new options
$("#myselect").html("<option value='1'>Some oranges</option><option value='2'>More Oranges</option><option value='3'>Even more oranges</option>");

// Replace items at a certain index
$("#myselect option:eq(1)").replaceWith("<option value='2'>Some apples</option>");
$("#myselect option:eq(2)").replaceWith("<option value='3'>Some bananas</option>");

// Set the element at index 2 to be selected
$("#myselect option:eq(2)").attr("selected", "selected");

// Set the selected element by text
$("#myselect").val("Some oranges").attr("selected", "selected");

// Set the selected element by value
$("#myselect").val("2");

// Remove an item at a particular index
$("#myselect option:eq(0)").remove();

// Remove first item
$("#myselect option:first").remove();

// Remove last item
$("#myselect option:last").remove();

// Get the text of the selected item
alert($("#myselect option:selected").text());

// Get the value of the selected item
alert($("#myselect option:selected").val());

// Get the index of the selected item
alert($("#myselect option").index($("#myselect option:selected")));

// Alternative way to get the selected item
alert($("#myselect option:selected").prevAll().size());

// Insert an item in after a particular position
$("#myselect option:eq(0)").after("<option value='4'>Some pears</option>");

// Insert an item in before a particular position
$("#myselect option:eq(3)").before("<option value='5'>Some apricots</option>");

// Getting values when item is selected
$("#myselect").change(function() {
alert($(this).val());
alert($(this).children("option:selected").text());
});





|

댓글 1개

좋네요
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-08-29 조회 3,886
12-08-07 조회 3,564
12-08-03 조회 3,495
12-07-31 조회 3,611
12-07-30 조회 3,571
12-07-16 조회 3,773
12-07-15 조회 3,469
12-07-07 조회 3,470
12-07-06 조회 3,566
12-07-03 조회 3,628
12-06-29 조회 3,213
12-06-22 조회 3,580
12-06-17 조회 3,688
12-05-21 조회 3,765
12-05-02 조회 3,352
12-05-02 조회 4,141
12-05-02 조회 3,257
12-04-30 조회 3,397
12-04-30 조회 3,111
12-03-17 조회 3,923
12-03-10 조회 3,332
12-03-08 조회 3,747
12-03-03 조회 3,510
12-02-27 조회 4,919
12-02-17 조회 4,271
12-02-16 조회 4,414
12-02-03 조회 3,258
12-01-31 조회 3,000
12-01-24 조회 3,073
12-01-17 조회 3,825
12-01-05 조회 3,383
11-12-30 조회 2,996
11-12-23 조회 4,597
11-12-08 조회 3,356
11-12-07 조회 4,336
11-11-27 조회 3,764
11-11-25 조회 4,083
11-11-23 조회 3,475
11-11-22 조회 3,415
11-11-09 조회 3,172
11-10-23 조회 3,071
11-10-19 조회 3,049
11-10-08 조회 2,756
11-10-04 조회 2,773
11-10-04 조회 5,213
11-09-01 조회 4,273
11-08-13 조회 2,446
11-08-06 조회 3,136
11-07-11 조회 3,533
11-06-27 조회 2,902
11-06-21 조회 2,527
11-06-13 조회 2,352
11-06-07 조회 2,351
11-05-26 조회 2,349
11-04-20 조회 2,674
11-03-21 조회 2,766
11-03-18 조회 2,459
11-03-11 조회 2,495
11-02-07 조회 2,313
11-01-18 조회 2,638
11-01-12 조회 2,360
11-01-06 조회 2,477
10-12-10 조회 2,738
10-12-09 조회 2,393
10-12-08 조회 4,989
10-11-29 조회 2,489
10-11-28 조회 2,724
10-11-28 조회 2,568
10-11-19 조회 2,754
10-11-04 조회 2,675
10-10-21 조회 2,382
10-10-19 조회 3,333
10-10-12 조회 2,657
10-10-07 조회 2,458
10-09-30 조회 3,443
10-09-17 조회 3,840
10-09-17 조회 3,800
10-05-31 조회 3,469
09-12-31 조회 3,607
09-07-23 조회 4,911
08-09-16 조회 3,168
08-09-06 조회 2,886
08-09-04 조회 3,320
08-08-16 조회 4,370
08-08-15 조회 3,248
08-08-14 조회 4,457
08-08-12 조회 3,814
08-07-23 조회 2,743
08-07-10 조회 3,679
08-07-04 조회 2,910
08-06-27 조회 7,564
08-06-19 조회 4,852
08-05-27 조회 5,466
08-05-25 조회 5,292
08-05-23 조회 3,362
08-05-23 조회 4,500
08-05-21 조회 4,882
08-05-20 조회 4,010
08-05-20 조회 3,247
08-04-18 조회 4,277