HTML DOM value 属性

定义和用法

value 属性可设置或返回选项的值。

当表单提交发生的时候,如果这个选项被选中,value 会和表单一起提交。映射 <option> 的 value 属性。

语法

  1. optionObject.value=somevalue

实例

下面的例子可返回被选选项的文本:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function alertValue()
  5. {
  6. var x=document.getElementById("mySelect").selectedIndex;
  7. alert(document.getElementsByTagName("option")[x].value);
  8. }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <form>
  14. Select your favorite fruit:
  15. <select id="mySelect">
  16. <option value="apple">Apple</option>
  17. <option value="orange">Orange</option>
  18. <option value="pineapple">Pineapple</option>
  19. <option value="banana">Banana</option>
  20. </select>
  21. <br /><br />
  22. <input type="button" onclick="alertValue()" value="Alert selected value">
  23. </form>
  24.  
  25. </body>
  26. </html>