1.直接上代码
<input id="copied" type="text" value="123456" style="margin-left: 10px;width: 200px;">
<input type="button" value="复制" id="copy">
$(function() {
$("#copy").click(function() {
var Url = document.getElementById("copied");
Url.select();
document.execCommand("Copy");
alert("复制成功!");
})
});