//复制链接
function copyURL(href,title) {
    clipboardData.setData("Text",href+"\n"+title);
    alert("已经成功复制到您的剪贴板，请粘贴到msn/qq/或者email中！");
}