1. 程式人生 > >html select標籤事件 傳選中的value

html select標籤事件 傳選中的value

<select id="hello" onchange="getContent(this.value,this.options[this.selectedIndex].text)">
<option value=1>a</option>
<option value=2>b</option>
<option value=3>c</option>
<option value=4>d</option>
</select>

以上是select的onchange方法,傳了兩個引數,分別是選中的option的Value(this.value)和選中的option的內同(this.options[this.selectedIndex].text)。這樣就可以在onchange方法中直接使用值和內容了。

 function getContent(value,content){

alert("選中的值是"+value+"選中的內容是"+content);
}