Asp.net 文本框全选的实现
程序员文章站
2024-01-20 20:20:10
...
一、鼠标滑过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()");
上一篇: PHP性能优化(一)技巧五条
下一篇: 初学者又来