JavaScript基礎 下拉列表 點擊按鈕 顯示當前選項的索引值
阿新 • • 發佈:2017-05-06
element type -type html+css set cnblogs 列表 對象 clas
鎮場詩:
清心感悟智慧語,不著世間名與利。學水處下納百川,舍盡貢高我慢意。
學有小成返哺根,願鑄一良心博客。誠心於此寫經驗,願見文者得啟發。
——————————————————————————————————————————
code:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <meta charset="utf-8" /> <script type="text/javascript"> window.onload = function () { var selectObj = document.getElementById("selBooks"); var book = ["道德經", "南華經", "北鬥經"]; //開辟對應的內存空間 selectObj.length = book.length; for (var i = 0; i < book.length; i++) { selectObj.options[i].value = book[i]; selectObj.options[i].text = book[i]; } selectObj.selectedIndex = 0; } function ShowSelectedIndex() { var selectObj = document.getElementById("selBooks"); alert(selectObj.selectedIndex); } </script> </head> <body> <select id="selBooks" name="books"> <!--使用js創建option對象--> </select> <input type="button" onclick="ShowSelectedIndex()" value="顯示當前選中的索引值"/> </body> </html>
result:
——————————————————————————————————————————
博文的精髓,在技術部分,更在鎮場一詩。IDE: VS2015;瀏覽器: Firefox。
html+css+js,強,值得努力學習。傳智播客的視頻教程是我的學習資源,推薦。
如果博文有可以改進的地方,請留下評論,我會認真思考的。
註:我是一位正在努力的普通人,此文僅供測試與參考使用,不可做其他用途。當參考博文內容時,代表您已接受使用條款。
JavaScript基礎 下拉列表 點擊按鈕 顯示當前選項的索引值