Asp.net 文本框全选的实现
程序员文章站
2023-09-09 18:37:33
一、鼠标滑过textbox全选 前台:
一、鼠标滑过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()");
前台:
<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()");
下一篇: LibreOJ #109. 并查集
推荐阅读
-
JavaScript实现带自动提示的文本框效果代码
-
大家好!,今天介绍一个简单实现全选全不选的方法,希望能对你有帮助哦!
-
ASP.NET MVC+EF框架+EasyUI实现权限管理系列(7)-DBSession的封装
-
Hangfire在ASP.NET CORE中的简单实现方法
-
asp.net实现在非MVC中使用Razor模板引擎的方法
-
ASP.NET MVC 3仿Server.Transfer效果的实现方法
-
ASP.NET实现推送文件到浏览器的方法
-
ASP.NET MVC中将控制器分离到类库的实现
-
Android listview ExpandableListView实现多选,单选,全选,edittext实现批量输入的实例代码
-
ASP.NET实现根据URL生成网页缩略图的方法