獲取select中option的值或文字

2021-10-11 23:50:17 字數 1031 閱讀 7992

1.selectedindex指的是當前被選中的文字的索引值。

2.節點.options[節點.selectedindex]是指定的某個標籤

3.節點.options[節點.selectedindex].value獲取或設定所選中的列表值。

節點.options[節點.selectedindex].text獲取或修改所選中的列表文字內容。

>

>

>

文件標題title

>

head

>

>

"lie"

>

>

值option

>

selected

="selected"

value

="遞減"

>

遞增option

>

>

類option

>

>

屬性option

>

select

>

body

>

>

var lie=document.

getelementbyid

("lie"

)//獲取select標籤

var index=lie.selectedindex//獲取選中的option的角標

var value=lie.options[index]

.value//獲取option的值

var text=lie.options[index]

.text//獲取option的文字內容

document.

write

(value)

doucment.

write

(text)

script

>

html

>

網頁展示內容(電腦宕機了?)

獲取select的option方法

一 jquery方法 頁面中必須載入過jquery庫 推薦使用 1 var options test option selected 獲取選中的項 2 alert options.val 拿到選中項的值 3 alert options.text 拿到選中項的文字 demo text1 text2 二...

vue 獲取select選中的option的所有值

特殊說明一點,想要預設繫結乙個值 讓select的v model的值 privincecode 與option繫結的value值 能匹配到一致的,就會顯示預設的那個值。也就會預設顯示到option中的值 methods this.provincename newitem 0 name 從找到的當前項...

select中option選項操作

一 jquery獲取select選擇的text和value 1 獲取select選擇的text var checktext jquery select id find option selected text 2 獲取select選擇的option value var checkvalue jque...