如何在我的网站上添加“添加到收藏夹”按钮或链接?
我正在使用Drupal构建网站。在每个页面的标题上,我希望有一个图像(由我自己设计),它将用作自定义“添加到夹”按钮。单击图像应将网站的URL添加到用户浏览器的夹(书签)中。这适用于所有浏览器,IE7
+,FF,Opera,Chrome。我在网上找不到很多信息。我想javascript应该能胜任工作,但是我在Javascript方面没有太多经验:)所以我需要您的帮助!
回答:
jQuery版本
$(function() { $('#bookmarkme').click(function() {
if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(document.title, window.location.href, '');
} else if (window.external && ('AddFavorite' in window.external)) { // IE Favorite
window.external.AddFavorite(location.href, document.title);
} else if (window.opera && window.print) { // Opera Hotlist
this.title = document.title;
return true;
} else { // webkit - safari/chrome
alert('Press ' + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL') + ' + D to bookmark this page.');
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="bookmarkme" href="#" rel="sidebar" title="bookmark this page">Bookmark This Page</a>
以上是 如何在我的网站上添加“添加到收藏夹”按钮或链接? 的全部内容, 来源链接: utcz.com/qa/431834.html