Rumah > Artikel > hujung hadapan web > Javascript操作dom对象之select(详细解答)
下面我为大家带来一篇Javascript操作dom对象之select全面解析。现在就分享给大家,也给大家做个参考。
html代码:
<select id="university"> <option value="北京大学">北京大学</option> <option value="清华大学">清华大学</option> <option value="北京电影学院">北京电影学院</option> </select>
js原生操作
1.获取select对象;
var university=document.getElementById("university");
2.获取select选中option的index值;
var index=university.selectedIndex;
3.获取select选中的option的value;
var val=university.options[index];
4.获取select选中的option的index;
var text=university.options[index].text;
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
Atas ialah kandungan terperinci Javascript操作dom对象之select(详细解答). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!