<script type="text/javascript">
function copyUrl2()
{
var Url2=document.getElementById("biao1").innerText
var oInput = document.createElement('input')
oInput.value = Url2
document.body.appendChild(oInput)
oInput.select()// 选择对象
document.execCommand("Copy")// 执行浏览器复制命令
oInput.className = 'oInput'
oInput.style.display='none'
alert('复制成功')
}
</script>
<div cols="20" id="biao1">12345678</div>
<input type="button" onClick="copyUrl2()" value="点击复制代码" />
document.execCommand这个是浏览器方法,当然,因为这个方法,是只有IE独家提供的。所谓JS兼容,其中之一就是指这样的地方,在别的浏览器里用不了。如果是FF还好,若是CHROME,想复制也挺费劲。