0
点赞
收藏
分享

微信扫一扫

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


代码:

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

 

 

举报

相关推荐

0 条评论