deve

///复制网站内容自动加上网址
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "/r/n  详细出处参考:"+location.href; clipboardData.setData("text", text);
}
}, 100 )
}

分类:

技术点:

相关文章:

  • 2021-11-15
  • 2021-12-25
  • 2021-07-22
  • 2021-12-25
  • 2021-12-05
  • 2022-01-16
  • 2021-11-27
猜你喜欢
  • 2021-12-19
  • 2022-01-25
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2022-12-23
相关资源
相似解决方案