给自己的小网站添加一键收藏按钮

HTML调用:

<a href="#fav" title="收藏本站" rel="noffolow"><i class="fa fa-star"></i>收藏本站</a>

function.php中添加:

function Bookmark(){
    if (document.all && !window.opera) {
        if (typeof window.external == "object") {
            window.external.AddFavorite (document.location, document.title); return false;
    } else return false;}

    else {
        var ua = navigator.userAgent.toLowerCase();
        var isWebkit = (ua.indexOf('webkit') != - 1);
        var isMac = (ua.indexOf('mac') != - 1);
        if (isWebkit || isMac) {
            alert('按下组合键: "' + (isMac ? 'Command/Cmd' : 'CTRL') + ' + D" 将本站添加到书签中');
            return false;
        }
        else {
            x.href=document.location;
            x.title=document.title;
            x.rel = "sidebar";
            return true;
        }
    }
}

代码支持WIN系统和苹果系统,两种系统点击会用不同的提示。

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容