代码支持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;
}
}
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)