-
:拿到select对象: `var myselect=document.getElementById("select");
-
:拿到选中项的索引:var index=myselect.selectedIndex ; // selectedIndex代表的是你所选中项的index;
-
:拿到选中项options的value: myselect.options[index].value;
-
:拿到选中项options的text: myselect.options[index].text;
-
:拿到选中项的其他值,比如这里的url: myselect.options[index].getAttribute('url');