将以下内容放入任何点击事件。
var content = data.path; // 要复制的文本内容 var $temp = $("<textarea>"); $("body").append($temp); $temp.val(content).select(); document.execCommand("copy"); $temp.remove(); layer.msg("已复制到剪贴板")