在textbox中点击回车,然后触发一个button的事件。在事件触发完成后,光标回到我指定的textbox中。
小菜鸟,整了好久。。。其实代码很简单。。。
在aspc.cs文件中
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
TextBox1.Attributes.Add("onkeydown", "SubmitKeyClick('Button2');");//给TextBox1加载一个回车事件
}
}
protected void Button2_Click(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "document.getElementById('TextBox2').focus()", true);//当执行完button2的事件后,光标会回到textbox2上去。
}
//-------注
TextBox1.Attributes.Clear();//清楚加载的事件