日期:2014-05-16 浏览次数:20390 次
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title></title> <script type="text/javascript"> function Test(){ var obj=document.getElementById("test"); for(var i=0;i<obj.options.length;i++){ if(obj.options[i].innerHTML=="护照"){ obj.options[i].selected=true; break; } } } </script> </head> <body> <select id="test"> <option>护照</option> <option>港澳通行证</option> <option>台湾通行证</option> <option>台胞证</option> <option>回乡证</option> <option>国际海员证</option> </select> <a href="#" onclick="Test();">初始</a> </body> </html>
------解决方案--------------------
<asp:DropDownList ID="documentname_2" runat="server" > <asp:ListItem>护照</asp:ListItem> <asp:ListItem>港澳通行证</asp:ListItem> <asp:ListItem>台湾通行证</asp:ListItem> <asp:ListItem>台胞证</asp:ListItem> <asp:ListItem>回乡证</asp:ListItem> <asp:ListItem>国际海员证</asp:ListItem> </asp:DropDownList> <a>初始</a> <script> $('#<%=documentname_2.ClientID%>>option:contains("护照")').attr('selected','true') </script>