编辑下面的代码:【加编码】
<html> <head> <script> function displayResult()   {   alert(document.getElementById("mySelect").type);   } </script> </head> <body> <form> <select id="mySelect">   <option>Apple</option>   <option>Pear</option>   <option>Banana</option>   <option>Orange</option> </select> </form> <button type="button" onclick="displayResult()">Display type of dropdown list</button> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂