本文介绍了在asp.net 2.0中,如何将光标从一个文本框移动到另一个文本框上单击的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在发生按键事件时将光标从一个文本框移动到另一个文本框.请提前帮助我.
i want to move my cursor from one to another text box on keypress event how it can be solved.please help me thnx in advance
推荐答案
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript">
function Tab()
{
var tb1=document.getElementById("<%=TextBox2.ClientID%>");
tb1.focus();
}
</script>
</head>
<body >
<form id="form1" runat="server">
<asp:TextBox ID="TextBox1" runat="server" onkeypress="return Tab();"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</form>
</body>
</html>
这篇关于在asp.net 2.0中,如何将光标从一个文本框移动到另一个文本框上单击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!