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

代码支持WIN系统和苹果系统,两种系统点击会用不同的提示。本代码全百度估计找不到第二个。
HTML代码

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

Javascript代码

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;
        }
    }
}

 

内容查看
查看价格免费
客服微信:wzsdream,添加请备注王子驿站!
原文链接:http://94wz.top/2646.html,转载请注明出处。
0

评论0

显示验证码
没有账号?注册  忘记密码?