Asp.net文本框全选的实现_php技巧
时间:2021-07-01 10:21:17
帮助过:15人阅读
一、鼠标滑过textbox全选
前台:
dsdsds
或
dsdsds
后台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
二、得到焦点
后台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");