会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
sp2012
博客园
首页
新随笔
联系
订阅
管理
js代码收集(2)_下拉列表
下拉列表:
得到选中的菜单,以及菜单的内容
var selectIndex = document.getElementById("approveWordInfo").selectedIndex;//获得是第几个被选中了 var selectText = document.getElementById("approveWordInfo").options[selectIndex].text
当下拉列表的属性为disabled时,是得不到value值的
<c:if test="${accountTypeName eq '下游' }"> <select name="account_type_name" id="account_type_name" disabled> <option value="上游">上游</option> <option value="下游" selected>下游</option> <option value="">--请选择---</option> </select>
posted on
2012-01-13 13:13
sp2012
阅读(
102
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部