$(function(){ $("#copy").click(function(){ var content = "{$db[\"ip\"]}"; var $temp = $("<textarea>"); $("body").append($temp); $temp.val(content).select(); document.execCommand("copy"); $temp.remove(); alert("内容已复制到剪贴板!"); }); });