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

时间:2012-04-05 17:33:25

标签: javascript jquery html bookmarks

我正在使用Drupal构建网站。在每个页面的标题上,我想要一个单独的图像(由我自定义设计),它将充当自定义"添加到收藏夹"按钮。点击图片应将网站的URL添加到用户浏览器的收藏夹(书签)中。这适用于所有浏览器,IE7 +,FF,Opera,Chrome。 我无法在网上找到这方面的大量信息。我想javascript应该可以胜任,但我在Javascript上没有多少经验:)所以我需要你的帮助!

5 个答案:

答案 0 :(得分:86)

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>

答案 1 :(得分:21)

此代码是iambriansreed的答案的更正版本:

<script type="text/javascript">
    $(function() {
        $("#bookmarkme").click(function() {
            // Mozilla Firefox Bookmark
            if ('sidebar' in window && 'addPanel' in window.sidebar) { 
                window.sidebar.addPanel(location.href,document.title,"");
            } else if( /*@cc_on!@*/false) { // IE Favorite
                window.external.AddFavorite(location.href,document.title); 
            } else { // webkit - safari/chrome
                alert('Press ' + (navigator.userAgent.toLowerCase().indexOf('mac') != - 1 ? 'Command/Cmd' : 'CTRL') + ' + D to bookmark this page.');
            }
        });
    });
</script>

答案 2 :(得分:1)

  if (window.sidebar) { // Mozilla Firefox Bookmark
     window.sidebar.addPanel(document.title,location.href,"");

它添加了书签,但在侧边栏中。

答案 3 :(得分:1)

我遇到了rel =“sidebar”的一些问题。当我在链接标签中添加它时,书签将在FF上工作但在其他浏览器中停止工作。所以我通过代码添加rel =“sidebar”动态来解决这个问题:

jQuery('.bookmarkMeLink').click(function() {
    if (window.sidebar && window.sidebar.addPanel) { 
        // Mozilla Firefox Bookmark
        window.sidebar.addPanel(document.title,window.location.href,'');
    }
    else if(window.sidebar && jQuery.browser.mozilla){
        //for other version of FF add rel="sidebar" to link like this:
        //<a id="bookmarkme" href="#" rel="sidebar" title="bookmark this page">Bookmark This Page</a>
        jQuery(this).attr('rel', 'sidebar');
    }
    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.');

    }
});

答案 4 :(得分:0)

归功于@Gert Grenander@Alaa.KhRoss Shanon

尝试下订单:

一切正常 - 除了firefox书签功能外。 出于某种原因,&#39; window.sidebar.addPanel&#39;虽然它运行正常,但它不是调试器的函数。

问题在于它从调用<a ..>标记获取其值:title作为书签名称,href作为书签地址。 所以这是我的代码:

的javascript:

$("#bookmarkme").click(function () {
  var url = 'http://' + location.host; // i'm in a sub-page and bookmarking the home page
  var name = "Snir's Homepage";

  if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1){ //chrome
    alert("In order to bookmark go to the homepage and press " 
        + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 
            'Command/Cmd' : 'CTRL') + "+D.")
  } 
  else if (window.sidebar) { // Mozilla Firefox Bookmark
    //important for firefox to add bookmarks - remember to check out the checkbox on the popup
    $(this).attr('rel', 'sidebar');
    //set the appropriate attributes
    $(this).attr('href', url);
    $(this).attr('title', name);

    //add bookmark:
    //  window.sidebar.addPanel(name, url, '');
    //  window.sidebar.addPanel(url, name, '');
    window.sidebar.addPanel('', '', '');
  } 
  else if (window.external) { // IE Favorite
        window.external.addFavorite(url, name);
  } 
  return;
});

HTML:

  <a id="bookmarkme" href="#" title="bookmark this page">Bookmark This Page</a>

在互联网资源管理器中,添加收藏夹之间存在不同之处&#39;: <a href="javascript:window.external.addFavorite('http://tiny.cc/snir','snir-site')">..</a> 和&#39;加入收藏&#39;:<span onclick="window.external.AddFavorite(location.href, document.title);">..</span>

示例:http://www.yourhtmlsource.com/javascript/addtofavorites.html

重要的是,在Chrome中,我们无法使用js(aspnet-i)添加书签: http://www.codeproject.com/Questions/452899/How-to-add-bookmark-in-Google-Chrome-Opera-and-Saf