js, jquery에서 select의 사용법

1054 단어 jquery
1.js
var obj=document.getElementById(selectid);
obj.options.length = 0;//모든 항목 지우기

obj.options[index] = new Option("three",3); //
obj.options[index].selected = true; //

obj.add(new Option("4","4")); ” ",” "

var index = obj.selectedIndex;obj.options.remove(index);//


2.jquery
$("#select_id").append("");//Select용 Option 추가(드롭다운)
$("#select_id")."). find('option:selected').text(), select에서 선택한 text 가져오기
$("#select_id").val(); 선택된value 가져오기
$("#select_id option[index='0']").remove();//인덱스 값이 0인 Option 제거
$("#select_id option[value='3']").remove();//값이 3인 Option 제거
$("#select_id option[text='4']").remove();//TEXT 값이 4인 Option 제거

$("#mselect_id").change(function(){
//
})

좋은 웹페이지 즐겨찾기