你好,我正在crossrider上開發擴展。我創建了一個按鈕,這個如何在crossrider擴展中添加書籤?
'<button id="xr-bookmark" title="Bookmark button" class="middle"><a id="bookmarkme" href="#" rel="sidebar" title="bookmark this page">Bookmark This Page</a></button>'
,並用它的行動書籤當前頁面是extension.js
$('#xr-crossrider-example #xr-bookmark')
.click(function() {
$(function() {
$("#bookmarkme").click(function() {
// Mozilla Firefox Bookmark
if ('sidebar' in window && 'addPanel' in window.sidebar) {
window.sidebar.addPanel(location.href,document.title,"");
} else if(/*@[email protected]*/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.');
}
});
});
});
,但它不工作,所以請有人告訴我正確的代碼,我可以使用爲當前頁面添加書籤。我只在mozilla上測試過這個代碼。