ASP.NET 根据TextBox输入的内容自动定位到ListBox中项
这个效果很简单,直接上代码
<table> <tr> <td> <div style="margin-top: 0; text-align: right"> 定位商户(请输入商户名称): <asp:TextBox ID="txtLocateAllSeller" runat="server" onkeyup="OnTextChanged('txtLocateAllSeller','liboxAllSellers')"></asp:TextBox></div> </td> <td> </td> <td> <div style="margin-top: 0; text-align: left"> 定位商户(请输入商户名称): <asp:TextBox ID="txtLocateSelectSeller" runat="server" onkeyup="OnTextChanged('txtLocateSelectSeller','selectSellers')"></asp:TextBox></div> </td> </tr></table>这个js方法好处就是一个通用方法,只需要传入TextBox的ID和ListBox的ID即可。定位也相当于模糊查询。