js实现文本框选中的方法
更新时间:2015年05月26日 15:52:47 作者:忆梦
这篇文章主要介绍了js实现文本框选中的方法,涉及javascript中select()方法的使用技巧,需要的朋友可以参考下
本文实例讲述了js实现文本框选中的方法。分享给大家供大家参考。具体如下:
这段javascript代码可解决文本框获得焦点,即使得文本框的内容被选中。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>select文件</title> <script language="javascript" type="text/javascript"> function getFocus() { document.getElementById("test").select(); } </script> </head> <body> <form id="f1"> <input type="text" id="test" name="test" value="你好嗎?" onfocus="getFocus();"/> </form> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
相关文章
JSON.parse()和JSON.stringify()使用介绍
这篇文章主要介绍了JSON.parse()和JSON.stringify()使用,需要的朋友可以参考下2014-06-06javascript中parentNode,childNodes,children的应用详解
本篇文章是对javascript中parentNode,childNodes,children的应用进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助2013-12-12
最新评论