您的位置:首页 > 运维架构

标题:如何在dropDownList中实现既能输入一个新值,又能实现下拉选

2013-01-11 11:15 281 查看
标题:如何在dropDownList中实现既能输入一个新值,又能实现下拉选aspx:<div id="selDiv" style=" z-index:100; visibility:visible; clip:rect(0px 110px 80px 92px); position:absolute"><%--left:279px; top:167px"--%><asp:DropDownList ID="workerno_list" runat="server" style="z-index:-1" Width="110px" ></asp:DropDownList></div><asp:TextBox ID="workerno_value" runat="server" style=" z-index:103px; position:absolute" Font-Size="10" Width="93px" MaxLength ="50" Height="22px"></asp:TextBox><script>function addTxtTanto(va){document.getElementById("workerno_value").value=va;document.getElementById("workerno_value").select();}</script>aspx.cs:page_load(){if (!IsPostBack){workerno_list.Attributes["onchange"] = "addTxtTanto(this.options[selectedIndex].innerText)";}}

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐