首頁 >web前端 >js教程 >js取得select標籤選取值的兩種方式_javascript技巧

js取得select標籤選取值的兩種方式_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB原創
2016-05-16 17:04:401226瀏覽
複製程式碼 程式碼如下:

var obj = document.getElementByIdx_x(”testSelect”); idvar index = obj.selectedIndex; // 選取索引var text = obj.options[index].text; // 選取文字var value = obj.options[index].value; // 選取值jQuery中取得選取select值第一種方式$('#testSelect option:selected').text();//選取的文字$('#testSelect option:selected') .val();//選取的值$("#testSelect ") .get(0).selectedIndex;//索引第二種方式$("#tesetSelect").find("option:selected").text();//選取的文字….val();… .get(0).selectedIndex;
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn