DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javascript獲取select的當前值示例代碼
javascript獲取select的當前值示例代碼
編輯:JavaScript綜合知識     

 本篇文章主要介紹了javascript獲取select的當前值示例代碼(兼容IE/Firefox/Opera/Chrome) 需要的朋友可以過來參考下,希望對大家有所幫助

JavaScript獲取Select當前值寫法: var value = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value; var text = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].text;   例子:  代碼如下: <script> function check() {       var select = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;       alert(select); } </script>   <select name="select" id="select"> <option value="test1" selected="selected">Test1</option> <option value="test2">Test2</option> </select> <input type="button" value="我要試試" onclick="check()"/>  
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved