<script type="text/javascript">
function copyUrl() {
var Url = document.getElementById("url1");//获取当前url1的id
Url.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
alert("已复制好,可贴粘。");//弹出框
}
</script>
<input type="text" value="www.xxx.com" id="url1" />
<input type="button" onClick="copyUrl()" value="点击复制代码" />