Asp.net 文本框全选的实现_php技巧
程序员文章站
2022-04-15 10:11:04
...
一、鼠标滑过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如何实现git部署