使用jQuery点击书签

有没有办法在点击特定按钮时将当前页面保存为书签(通过jQuery或其他方式)?

 

本规范取自Developersnippets !

/ E:

Chrome不支持此类操作,因为安全级别可能会被破坏。

由于Chrome不支持此类操作,因此解决方案可能是首先检查浏览器是否使用Chrome浏览器,如果是,则提醒用户不支持书签function。 然后对于其他情况, DevelopersSnippets上提供的脚本运行正常。

例:

  $("a.bookmark").click(function(e){ e.preventDefault(); // this will prevent the anchor tag from going the user off to the link var bookmarkUrl = this.href; var bookmarkTitle = this.title; if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) { alert("This function is not available in Google Chrome. Click the star symbol at the end of the address-bar or hit Ctrl-D (Command+D for Macs) to create a bookmark."); }else if (window.sidebar) { // For Mozilla Firefox Bookmark window.sidebar.addPanel(bookmarkTitle, bookmarkUrl,""); } else if( window.external || document.all) { // For IE Favorite window.external.AddFavorite( bookmarkUrl, bookmarkTitle); } else if(window.opera) { // For Opera Browsers $("a.bookmark").attr("href",bookmarkUrl); $("a.bookmark").attr("title",bookmarkTitle); $("a.bookmark").attr("rel","sidebar"); } else { // for other browsers which does not support alert('Your browser does not support this bookmark action'); return false; } }); 

试试这个:

 if (window.sidebar) // firefox window.sidebar.addPanel(title, url, ""); else if(window.opera && window.print){ // opera var elem = document.createElement('a'); elem.setAttribute('href',url); elem.setAttribute('title',title); elem.setAttribute('rel','sidebar'); elem.click(); } else if(document.all)// ie window.external.AddFavorite(url, title); } 

我认为jquery Bookmark插件正是你要找的。 jBrowserBookmark允许您向站点添加function,允许将页面添加到浏览器的boookmark列表中。 Internet Explorer,Firefox,Opera和Konqueror浏览器支持此function。您可以在此处获取此function