﻿// JScript 文件

document.body.oncopy = function ()
{ 
    setTimeout( function ()
    { 
        var text = clipboardData.getData("text");
        if (text)
            { 
                text = text + "\r\n资料来自: http://www.yefor.cn \r\n引用转载网址："+location.href; clipboardData.setData("text", text);
            } 
    }, 100 ) 
}
