zx_bing

人生路漫漫,多学些知识总是有益处的
随笔 - 32, 文章 - 0, 评论 - 0, 引用 - 0
数据加载中……

javascript获取select的值全解

Js代码 复制代码 收藏代码
  1. 获取显示的汉字 
  2.  
  3. document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text 
  4.  
  5. 获取数据库中的id 
  6.  
  7. window.document.getElementById("bigclass").value 
  8.  
  9. 获取select组分配的索引id 
  10.  
  11. window.document.getElementById("bigclass").selectedIndex 
  12.  
  13.  
  14. 例子: 
  15.  
  16. <select name="bigclass" id="bigclass" onChange="javascript:updatePage2();"
  17. <option value="" selected="selected">ajax实验</option> 
  18. <option value="4">我适宜市哈</option> 
  19. </select> 
  20.  
  21.  
  22. 使用 
  23. document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text 
  24. 的结果是:我适宜市哈 
  25.  
  26. 使用 
  27. window.document.getElementById("bigclass").value 
  28. 的结果是:4 
  29.  
  30. 使用 
  31. window.document.getElementById("bigclass").selectedIndex 
  32. 的结果是:1 

posted on 2012-07-27 14:01 zx_bing 阅读(176) 评论(0)  编辑  收藏 所属分类: js