Home  >  Article  >  Backend Development  >  Asp.net 文本框全选的实现_PHP

Asp.net 文本框全选的实现_PHP

WBOY
WBOYOriginal
2016-06-01 12:22:26716browse

一、鼠标滑过textbox全选
前台:
dsdsds

dsdsds
后台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");

二、得到焦点
后台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn