Asp.net 文本框全选的实现

前端之家收集整理的这篇文章主要介绍了Asp.net 文本框全选的实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、鼠标滑过textBox全选
前台
<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()");

原文链接:https://www.f2er.com/php/28907.html

猜你在找的PHP相关文章