본문 바로가기

프로그램/dom+script+jquery

jquery selectbox


 

/**

* 일괄적용 등록/삭제

*/

var allChkChange = function(type){

var allgrowplace =$("#growtable input[id=growplace]").val();         var allgrower =$("#growtable input[id=grower]").val();

var allgrowaddr =$("#growtable input[id=growaddr]").val();

var allmanageoffcdnm=$("#growtable input[id=manageoffcdnm]").val();

var allmanageoffcd =$("#growtable input[id=manageoffcd]").val();

var allmanageinstt =$("#growtable input[id=manageinstt]").val();

var allphone =$("#growtable input[id=phone]").val();

var allplantquantity=$("#growtable input[id=plantquantity]").val();

var allPlantdate =$("#growtable input[name=allplantdate]").val();

var allPlantmethod =($("#growtable select[id=plantmethod]").val())-1;

$("input[name='arrChk']").each(function(){ 

if($(this).is(":checked")==true){

tabid = $(this).parents('table').attr("id"); 

$("#"+tabid+" input[name=growplace]").attr("value",allgrowplace);

$("#"+tabid+" input[name=grower]").attr("value",allgrower);

$("#"+tabid+" input[name=growaddr]").attr("value",allgrowaddr);

$("#"+tabid+" input[name=manageoffcdnm]").attr("value",allmanageoffcdnm);

$("#"+tabid+" input[name=manageoffcd]").attr("value",allmanageoffcd);

$("#"+tabid+" input[name=manageinstt]").attr("value",allmanageinstt);

$("#"+tabid+" input[name=phone]").attr("value",allphone);

$("#"+tabid+" input[name=plantquantity]").attr("value",allplantquantity);

$("#"+tabid+" input[name=plantdate]").attr("value",allPlantdate);

$("#"+tabid+" option:eq("+allPlantmethod+")").attr("selected","selected");

}

});




$("#select_box option:selected").val();

$("select[name=selectbox]").val();


jQuery로 선택된 내용 읽기

$("#selectbox option:selected").text();


선택된 위치

var index = $("#test option").index($("#test option:selected")); 








// 셀렉트 박스 옵션에 추가(기존 옵션 뒤쪽으로 추가)


$("#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");


// index번호가 0인것을 제거

$("#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());


// 0번 인덱스 다음으로 옵션을 추가

$("#myselect option:eq(0)").after("<option value='4'>Some pears</option>");


// 3번 인덱스 이전에 옵션을 추가

$("#myselect option:eq(3)").before("<option value='5'>Some apricots</option>");


// select 박스의 값이 변경되었을 때 알링으로 값과 텍스트 보이기

$("#myselect").change(function() {

alert($(this).val());

alert($(this).children("option:selected").text());

});