1:<select name="select" id="typeController">
<option>--投稿人--</option>
<option>--管理员--</option>
</select>
注:getElementById()
var t = document.getElementById("typeController");
alert(t.options[t.selectedIndex].value);
2:<td align="right" style="height: 25px; width: 16%;">
分销商:</td>
<td align="left" width="*" style="height: 25px; width: 16%;">
<select id="dr_orderrk1" runat="server" οnchange="Change(this)">
<option value="测试点">测试点</option>
<option value="苏泊尔官方旗舰店">苏泊尔官方旗舰店</option>
<option value="测试点">测试点</option>
</select>
</td>
<script>
var sel=document.getElementById("dr_orderrk1");
for(var i=0;i<sel.length;i++)
{
if(sel.options[i].text=="苏泊尔官方旗舰店")
{
sel.selectedIndex=i;
break;
}
}
</script>