js实现鼠标点击文本框自动选中内容的方法

这里使用JS实现鼠标点击时自动选中文本框文本的效果,相信许多朋友都遇到这种功能的,就是当我们点击文本框的时候,文本框中默认的文字会被全部选中,这样当你输入的时候不用再去选择,省去了一些麻烦,提高了输入效率,用户肯定会喜欢这功能,那么实现的方法是怎么样呢?通过本代码你就搞明白了。

先来看看运行效果截图:

js实现鼠标点击文本框自动选中内容的方法

在线演示地址如下:

具体代码如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>自动选择文本框/编辑框中的文字</title> <script type="text/javascript"> function Myselect_txt(){ if (document.form1.title.focus){ document.form1.title.select();} } function Myselect_txtarea(){ if (document.form1.content.focus){ document.form1.content.select();} } </script> </head> <body> <table cellpadding="0" cellspacing="0" bgcolor="#f9f9f9"> <form> <tr bgcolor="#214994"> <td colspan="2"><div><font color="#FFFFFF">新闻信息修改</font></div></td> </tr> <tr> <td><div><font color="#214994">新闻标题:</font></div></td> <td><input type="text" size="50" value="今日新闻头条"></td> </tr> <tr> <td><div><font color="#214994">新闻内容:</font></div></td> <td rowspan="2"><textarea cols="50" rows="6">今日,据相关方面报道,...</textarea></td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td colspan="2"> <div> <input type="submit" value="添加"> &nbsp; <input type="reset" value="重置"> </div></td> </tr> </form> </table> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wggxzx.html