当前位置:Gxlcms > JavaScript > javascript获取select值的方法分析_javascript技巧

javascript获取select值的方法分析_javascript技巧

时间:2021-07-01 10:21:17 帮助过:3人阅读

本文实例讲述了javascript获取select值的方法。分享给大家供大家参考。具体分析如下:

1. 获取显示的汉字

代码如下:
document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text

2. 获取数据库中的id

代码如下:
window.document.getElementById("bigclass").value

3.获取select组分配的索引id

代码如下:
window.document.getElementById("bigclass").selectedIndex

例子:



使用:

代码如下:
document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text

结果是:我适宜市哈

使用:

代码如下:
window.document.getElementById("bigclass").value

结果是:4

使用:

代码如下:
window.document.getElementById("bigclass").selectedIndex

结果是:1

希望本文所述对大家的javascript程序设计有所帮助。

人气教程排行