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 下拉框选择改变促发事件和防全局刷新(推荐)
- DropDownList绑定选择数据报错提示异常解决方案
- 用javascript为DropDownList控件下拉式选择添加一个Item至定义索引位置
- asp.net中不能在DropDownList中选择多个项 原因分析及解决方法
- ASP.NET中DropDownList下拉框列表控件绑定数据的4种方法
- C#使用DropDownList绑定添加新数据的方法汇总
- asp.net DropDownList实现二级联动效果
- DropDownList添加客户端下拉事件操作
- DropDownList实现可输入可选择(两种版本可选)