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

IT技术 javascript jquery html bookmarks
2021-01-23 14:23:50

我正在使用 Drupal 建立一个网站。在每个页面的标题上,我希望有一个图像(由我自定义设计)作为自定义的“添加到收藏夹”按钮。单击图像应将网站的 URL 添加到用户浏览器的收藏夹(书签)。这应该适用于所有浏览器,IE7+、FF、Opera、Chrome。我无法在网上找到很多相关信息。我想 javascript 应该可以完成这项工作,但我在 Javascript 方面没有太多经验 :) 所以我需要你的帮助!

5个回答

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>

我试过了,但它在歌剧上不起作用。只有 IE 会弹出书签框,Firefox、Chrome 和 safari(Windows) 都会发出警报。
2021-03-22 14:23:50
@webmaniacgr 查看更新。是的。并请实际上 +1 然后接受。
2021-04-01 14:23:50
Firefox 的专有性window.sidebar.addPanel(..)已被弃用,该功能在 Firefox 23 中被删除(参见第三个项目符号)
2021-04-01 14:23:50
@Whymarrrh,添加了一个 webkit(Chrome/Safari)操作。
2021-04-08 14:23:50
更新:201711 月遗憾的是,相关组织仍未对此进行标准化。这仍然是最好的/唯一的解决方案。
2021-04-11 14:23:50

此代码是 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>
谢谢!这适用于 ie 与接受的答案不同..(在 ie10 上的强制 ie9 模式下)
2021-03-25 14:23:50
带有 id=sidebar 元素的 Firefox。检查上面的问题..它已修复
2021-03-25 14:23:50
刚刚尝试了该脚本,但它只在 IE、Firefox、Chrome、Opera 和 Safari(Windows) 上弹出书签框,所有警报。
2021-03-28 14:23:50
更新:如果你有一个带有 id=sidebar 的元素,这将失败,检查这个:stackoverflow.com/questions/17747578/...
2021-03-29 14:23:50

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

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.');

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

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

location.href,document.title, - 应该是相反的顺序
2021-04-06 14:23:50

感谢@Gert Grenander@ Alaa.Kh罗斯香农

尝试下订单:

一切正常 - 除了 Firefox 书签功能。出于某种原因,“window.sidebar.addPanel”不是调试器的功能,尽管它工作正常。

问题在于它从调用<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>

在 Internet Explorer 中, 'addFavorite':<a href="javascript:window.external.addFavorite('http://tiny.cc/snir','snir-site')">..</a> 和 'AddFavorite':之间存在差异 <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-安全