一直在搜索“添加到收藏夹”这段代码,以获得优质的'ol html / js。
现在我知道How do I add an "Add to Favorites" button or link on my website?文章。但是,对于大多数浏览器来说它已经不再适用了,这已经过时了。
所以我开始这个,看看是否有人有一个适用于2014年的更新编码,至少看到让我的客户有机会为他们最重要的页面添加书签会很好。考虑到这一点,它最好接受除人们当前页面之外的其他页面。如果不是,那么比原来更多。
这是过时的原作:
<script type="text/javascript">
$(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>