﻿document.body.oncopy = function () { 
setTimeout( function () { 
  var text = clipboardData.getData("text");
  if (text) { 
   text = text + "\r\n来自: 安全管理网（www.safehoo.com） 详细出处："+location.href; clipboardData.setData("text", text);
  } 
    }, 100 ) 
}