1. 首页
  2. 跨平台
  3. Weex
  4. JavaScript实现复制文章自动添加版权

JavaScript实现复制文章自动添加版权

上传者: 2020-12-17 08:02:08上传 PDF文件 29KB 热度 13次
第一种 [removed] document.body.oncopy = function(){ setTimeout( function (){ var text = clipboardData.getData("text"); if(text){ text = text + "\r\n本文来自: (www.jb51.net) 详细出处参考:"+location.href; clipboardData.setData("text", text); } },100) } [removed] 注意
用户评论