我看过几个js片段来为页面添加书签,例如:http://www.thewebflash.com/2014/12/how-to-add-cross-browser-add-to.html
基本上,他们根据浏览器调用不同的js方法,在ff中使用rel = sidebar动态创建一个href,或者如果该浏览器不支持,则提示用户手动添加它。
我想知道在角度应用程序中实现这一目标的最简洁方法是什么?我搜索了一个可以完成但却找不到的指令。
答案 0 :(得分:2)
这是一个实现该功能的简单指令:
angular.module("myApp", [])
.directive("bookmarkPage", function ($window, $location) {
return {
restrict: "AEC",
link: function (scope, element, attrs) {
$(element).click(function (e) {
var bookmarkURL = window.location.href;
var bookmarkTitle = document.title;
var triggerDefault = false;
if (window.sidebar && window.sidebar.addPanel) {
// Firefox version < 23
window.sidebar.addPanel(bookmarkTitle, bookmarkURL, '');
} else if ((window.sidebar && (navigator.userAgent.toLowerCase().indexOf('firefox') > -1)) || (window.opera && window.print)) {
// Firefox version >= 23 and Opera Hotlist
var $this = $(this);
$this.attr('href', bookmarkURL);
$this.attr('title', bookmarkTitle);
$this.attr('rel', 'sidebar');
$this.off(e);
triggerDefault = true;
} else if (window.external && ('AddFavorite' in window.external)) {
// IE Favorite
window.external.AddFavorite(bookmarkURL, bookmarkTitle);
} else {
// WebKit - Safari/Chrome
alert('Press ' + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Cmd' : 'Ctrl') + '+D to bookmark this page.');
}
return triggerDefault;
});
}
}
});
您仍然可以将window
和window.loaction
替换为$window
和$location
,以使其易于测试。
在您的HTML中:
<a id="bookmark-this" href="#" title="Bookmark This Page" bookmark-page>Bookmark This Page</a>