<script>
function Bookmark() {
alert(navigator.userAgent);
if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(location.href, document.title, "");
}
else if (window.external) { // IE Favorite
window.external.AddFavorite(location.href, document.title);
}
else if (window.opera && window.print) {
alert("ASAS");
var e = document.createElement('a');
e.setAttribute('href', location.href);
e.setAttribute('title', document.title);
e.setAttribute('rel', 'sidebar');
e.click();
}
}
</script>
<a href="#" onclick="Bookmark()">Bookmark</a>
我有一个脚本可以让用户单击为页面添加书签。在 IE 下可以正常工作,但在 Firefox24.0 版本下不行。它告诉我错误 window.sidebar.addPanel 不是函数。任何人都知道上面的代码出了什么问题。请帮忙!!!非常感谢。