下面的寫法兼容了IE、Firefox、Opera。而在chrome下提醒用戶按快捷鍵收藏。
<a rel="sidebar" title="聯想導航" href="">添加收藏</a>
<script>
$("a[rel='sidebar']").click(function(e) {
var href = this.href || document.location,
title = this.title || document.title;
try{
if(window.sidebar){
sidebar.addPanel(title, href, "");
}else{
external.addFavorite(href, title);
}
}catch(e){
alert("加入收藏失敗,請按Ctrl+D進行添加");
}
return false;
});
</script>