Rumah >pembangunan bahagian belakang >tutorial php >Asp.net 文本框全选的实现_php技巧
一、鼠标滑过textbox全选
前台:
或
后台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
二、得到焦点
后台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");