일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- ADB
- Javascript
- 메인보드 보기
- 제이쿼리로 이동하기
- 안드로이드
- mainboard 보기
- ram 보기
- jquery display none
- 제이쿼리 화면이동
- 자바스크립트 이미지 변경
- html 이미지 변경
- 씨피유 보기
- 클릭시 화면 이동
- date to timestamp
- timestamp to date
- 댓글 펼침
- jquery 이미지 바꾸기
- 자바스크립트 이미지 바꾸기
- jquery 대댓글 펼침 접힘
- adb.exe
- 제이쿼리 이미지 변경
- html 보이기 안보이기
- jquery 댓글 펼침
- 스크립트 이미지 바꾸기
- 렘 보기
- 스크립트 화면이동
- jquery 글자 사라졌다 나타났다
- jquery 이미지 변경
- 제이쿼리 버튼 클릭 화면 이동
- 스크립트 이미지 변경
- Today
- Total
끄적끄적 스토리
자바스크립트 셀렉트 박스를 다양하게 제어해보자! 본문
//출처 http://blog.daum.net/twinsnow/124
// 정리가 잘 되어있어서 가져왔습니다!
jQuery로 선택된 값 읽기
$("#selectBox option:selected").val();
$("#select_box > 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'>oranges</option><option value='2'>Oranges</option>");
// Replace items at a certain index
$("#selectBox option:eq(1)")
.replaceWith("<option value='2'>apples</option>");
$("#selectBox option:eq(2)")
.replaceWith("<option value='3'>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");
$("#selectBox > option[@value=지정값]").attr("selected", "true");
// 지정된 인덱스 값의 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());
// 0번째 item 다음에 삽입
$("#selectBox option:eq(0)").after("<option value='4'>Some pears</option>");
// 3번째 item 전에 삽입
$("#selectBox option:eq(3)").before("<option value='5'>Some apricots</option>");
// select box 값이 변경될때 선택된 현재값
$("#selectBox").change(function() {
alert($(this).val());
alert($(this).children("option:selected").text());
});
'웹' 카테고리의 다른 글
[JQuery] 제이쿼리로 이미지를 변경해보자! (0) | 2020.09.21 |
---|---|
[PHP] 문자열 안에서 원하는 단어를 찾아보자! (0) | 2020.06.03 |
[JavaScript] Date to timestamp 타임스탬프 값으로 변환하기 (0) | 2020.03.12 |
[PHP] date 함수와 strtotime 함수의 기본 사용법 (0) | 2020.03.12 |
[JavaScript] JQuery html 체크박스 체크 여부 확인 (0) | 2020.01.17 |