日期:2014-05-16  浏览次数:20388 次

如何读取option属性值?
我在网页中添加一个下拉选择框:
            <select   style= "width:85% "   name= 'aDDept '   >
                <option   value= "A "   label= "通用类 "   title= "通用类 "> 通用类 </option>
                <option   value= "B "   label= "办公厅 "   title= "办公厅 "> 办公厅 </option>
            </select>
        想将其中的label或者title的值度曲出来,其实也就是想将“通用类”和“办公厅”与对应的“A”、“B”一起提取出来。
        想知道怎么实现,先谢谢了,在线等,QQ:39799211


------解决方案--------------------
aDDept[aDDept.selectedIndex].value
aDDept[aDDept.selectedIndex].label
aDDept[aDDept.selectedIndex].title