当鼠标滑过文本框自动选中输入框内容JS代码

来源:互联网 发布:java b2c 源码 编辑:程序博客网 时间:2024/04/29 19:55

代码:

<html><head><title>响应鼠标自动选中文本框内容</title></head><body><input id="a" type="text" value="请输入搜索词" onmouseover="selectInputContent(this.id)"/><script type="text/javascript">function selectInputContent(n){ obj =document.getElementById(n); obj.focus(); obj.select();}</script></body></html>



 

 

原创粉丝点击