小编典典

如何在我的网站上添加“添加到收藏夹”按钮或链接?

html

我正在使用Drupal构建网站。在每个页面的标题上,我希望有一个图像(由我自己设计),它将用作自定义“添加到收藏夹”按钮。单击图像应将网站的URL添加到用户浏览器的收藏夹(书签)中。这适用于所有浏览器,IE7
+,FF,Opera,Chrome。我在网上找不到很多信息。我想javascript应该能胜任工作,但是我在Javascript方面没有太多经验:)所以我需要您的帮助!


阅读 1052

收藏
2020-05-10

共1个答案

小编典典

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>
2020-05-10