Asp.net 文本框全选的实现_PHP教程
程序员文章站
2024-04-04 15:31:59
...
一、鼠标滑过textbox全选
前台:
dsdsds
或
dsdsds
后台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
二、得到焦点
后台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");
前台:
或
后台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
二、得到焦点
后台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");