댓글 1개
14년 전
[펌]
// 뒤쪽에 옵션 추가
$("#myselect").append("<option value='1'>Apples</option>");
$("#myselect").append("<option value='2'>After Apples</option>");
// 앞쪽에 옵션 삽입
$("#myselect").prepend("<option value='0'>Before Apples</option>");
// 옵션변경
$("#myselect").html("<option value='1'>Some oranges</option><option value='2'>More Oranges</option><option value='3'>Even more oranges</option>");
// 인덱스 위치에 따라 옵션 변경
$("#myselect option:eq(1)").replaceWith("<option value='2'>Some apples</option>");
$("#myselect option:eq(2)").replaceWith("<option value='3'>Some bananas</option>");
// 2번째 옵션 셀렉트
$("#myselect option:eq(2)").attr("selected", "selected");
// 해당 텍스트를 가진 옵션 셀렉트
$("#myselect").val("Some oranges").attr("selected", "selected");
// 해당값을 가진 옵션 셀렉트
$("#myselect").val("2");
// 선택 옵션 제거
$("#myselect option:eq(0)").remove();
// 첫번째 옵션 제거
$("#myselect option:first").remove();
// 마지막 옵션 제거
$("#myselect option:last").remove();
// 셀렉트된 옵션 텍스트 리턴
alert($("#myselect option:selected").text());
// 셀렉트된 옵션 값리턴
alert($("#myselect option:selected").val());
// 셀렉트된 인덱스 리턴
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());
});
// 뒤쪽에 옵션 추가
$("#myselect").append("<option value='1'>Apples</option>");
$("#myselect").append("<option value='2'>After Apples</option>");
// 앞쪽에 옵션 삽입
$("#myselect").prepend("<option value='0'>Before Apples</option>");
// 옵션변경
$("#myselect").html("<option value='1'>Some oranges</option><option value='2'>More Oranges</option><option value='3'>Even more oranges</option>");
// 인덱스 위치에 따라 옵션 변경
$("#myselect option:eq(1)").replaceWith("<option value='2'>Some apples</option>");
$("#myselect option:eq(2)").replaceWith("<option value='3'>Some bananas</option>");
// 2번째 옵션 셀렉트
$("#myselect option:eq(2)").attr("selected", "selected");
// 해당 텍스트를 가진 옵션 셀렉트
$("#myselect").val("Some oranges").attr("selected", "selected");
// 해당값을 가진 옵션 셀렉트
$("#myselect").val("2");
// 선택 옵션 제거
$("#myselect option:eq(0)").remove();
// 첫번째 옵션 제거
$("#myselect option:first").remove();
// 마지막 옵션 제거
$("#myselect option:last").remove();
// 셀렉트된 옵션 텍스트 리턴
alert($("#myselect option:selected").text());
// 셀렉트된 옵션 값리턴
alert($("#myselect option:selected").val());
// 셀렉트된 인덱스 리턴
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());
});
게시판 목록
팁게시판
디자인과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5627 |
멋진남자임
|
10년 전 | 1446 | |
| 5626 | 10년 전 | 3852 | ||
| 5625 |
멋진남자임
|
10년 전 | 1510 | |
| 5624 | 10년 전 | 2086 | ||
| 5623 | 10년 전 | 1551 | ||
| 5622 |
네이비칼라
|
10년 전 | 1597 | |
| 5621 |
멋진남자임
|
10년 전 | 1390 | |
| 5620 |
잘살아보자
|
10년 전 | 1086 | |
| 5619 | 10년 전 | 3391 | ||
| 5618 |
이웃집초보
|
10년 전 | 1262 | |
| 5617 |
|
10년 전 | 4601 | |
| 5616 |
멋진남자임
|
10년 전 | 1090 | |
| 5615 |
멋진남자임
|
11년 전 | 1353 | |
| 5614 | 11년 전 | 4477 | ||
| 5613 |
파랑새1597
|
11년 전 | 2589 | |
| 5612 | 11년 전 | 1989 | ||
| 5611 |
잘살아보자
|
11년 전 | 5227 | |
| 5610 |
잘살아보자
|
11년 전 | 2129 | |
| 5609 |
잘살아보자
|
11년 전 | 3191 | |
| 5608 |
잘살아보자
|
11년 전 | 4108 | |
| 5607 |
잘살아보자
|
11년 전 | 1932 | |
| 5606 |
잘살아보자
|
11년 전 | 1894 | |
| 5605 |
잘살아보자
|
11년 전 | 5700 | |
| 5604 |
잘살아보자
|
11년 전 | 2670 | |
| 5603 |
잘살아보자
|
11년 전 | 988 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기