文本框内容全选与复制的js代码

发布时间:2020-08-06编辑:脚本学堂
js代码实现的点击按钮复制并全选文本框里的内容,纯JS实现,简单实用的代码,有需要的朋友,可以参考下。

完整代码如下:

<html>
<title>文本框内容全选与复制</title>
<head>
<style>
.highlighttext{
background-color:yellow;
font-weight:bold;
}
</style>
</head>
<form name=test>
<input type="button" value="点此全选复制"  onclick="javascript:HighlightAll('test.select1')" >
<textarea name="select1" rows=3 cols=46 >脚本学堂,欢迎大家的光临!</textarea>
</form> 
<script language="Javascript">         
<!--         
var copytoclip=1
function HighlightAll(theField) {         
var tempval=eval("document."+theField)         
tempval.focus()         
tempval.select()         
if (document.all && copytoclip==1){         
therange=tempval.createTextRange()         
therange.execCommand("Copy")         
window.status="Contents highlighted and copied to clipboard!"         
setTimeout("window.status=''",1780)         
}         
}         
//-->         
</script>
</head>
</html>