编程语言
首页 > 编程语言> > C#控件DropDownList下拉列表默认打开

C#控件DropDownList下拉列表默认打开

作者:互联网

c#中的控件DropDownList要实现默打开确实不容易,之前也是想过页面上的点击之后就打开了,那直接模拟点击不就行了,试过后大失所望,根本没有效果。

于是网上找到了一个例子能实现IE浏览器下的打开,具体实现看下面例子

<asp:DropDownList ID="ddlgsmc" runat="server" Height="20px" ></asp:DropDownList>

js中的代码

window.onload=function (){
                document.getElementById("ddlgsmc").focus();
                var WshShell = new ActiveXObject("Wscript.Shell");
                try {
                    WshShell.SendKeys("%{DOWN}");
                } catch (e) { }
                WshShell.Quit;
}

  

标签:控件,C#,点击,例子,WshShell,打开,DropDownList
来源: https://www.cnblogs.com/feipengting/p/10616491.html