摘要:
1.使用<select>标签 优点:可以初始化选中项 缺点:不能自定义option的样式,自带的样式很丑 效果图: 代码如下: <select id="group" value="1"> <option value="1">Dimond</option> <option value="2">vert 阅读全文
摘要:
一、js获取select标签选中的值var obj = document.getElementById(”testSelect”); //定位id var index = obj.selectedIndex; // 选中索引 var text = obj.options[index].text; / 阅读全文