ASP.Net Auto跳转到下一个TextField

时间:2014-11-18 05:21:31

标签: c# asp.net

我有以下代码,当用户在月份文本框中输入两位数时,如何使光标自动跳转到下一个文本字段,在这种情况下为dd?

<p>  
   <h5>Date of Birth <font color="red">* </font>(mm/dd/yyyy)</h5>

   <asp:TextBox ID="mm" runat="server"  MaxLength="2"></asp:TextBox>
   <asp:TextBox ID="dd" runat="server"  MaxLength="2"></asp:TextBox>
   <asp:TextBox ID="yyyy" runat="server" MaxLength="4"></asp:TextBox>

 </p>

1 个答案:

答案 0 :(得分:0)

您需要使用jQuery。类似的东西:

$(document).ready(function(){
function ChangeFocus()
{
    if($("#txtboxDay").val().length==2)
        {
            $("#txtboxmonth").focus();
        }

}
 $("#txtboxDay").bind("change",ChangeFocus);

});