always in my heart Aspnet 文本框全选的实现
程序员文章站
2022-03-30 15:18:41
...
一、鼠标滑过textbox全选
前台:
后台:
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()");
以上就介绍了always in my heart Aspnet 文本框全选的实现,包括了always in my heart方面的内容,希望对PHP教程有兴趣的朋友有所帮助。