前台:
<asp:textbox runat="server" onmouseover="this.focus();this.select()">dsdsds</asp:textbox>
或
<asp:textbox runat="server" onmouseover="this.focus()" onfocus="this.select()">dsdsds</asp:textbox>
后台:
this.txtbox1.attributes.add("onmouseover", "this.focus();this.select();");
二、得到焦点
后台:
textbox1.focus();
textbox1.attributes.add("onfocus","this.select()");
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!