在dropDownList中实现既能输入一个新值又能实现下拉选的代码

2019/7/7 18:31:59

本文主要是介绍在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)";
}
}


这篇关于在dropDownList中实现既能输入一个新值又能实现下拉选的代码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


暂无数据...
扫一扫关注最新编程教程