document.body.oncopy = function ()
{
    setTimeout(
        function ()
        {
            var text = clipboardData.getData("text");
            if (text)
            { 
                text = text + " 原文出自【中国育婴网】："+location.href;
                clipboardData.setData("text", text);
            }
        },200
    )
}
window.onload = function()
{
    this.focus();
}



