﻿document.body.oncopy = function () { 
 setTimeout( function () { 
  var text = clipboardData.getData("text");
  if (text) { 
   text = text + "\r\n[本文]最先由[生活小窍门网]收集整理(www.life34.cn) 原文出自："+location.href; clipboardData.setData("text", text);
  } 
    }, 100 ) 
}
