javascript實(shí)現(xiàn)瀏覽器收藏網(wǎng)頁到收藏夾,具體代碼如下:
var url = window.location.href;
var title = window.document.title;
var ua = navigator.userAgent.toLowerCase();
if(ua.indexOf("msie 8") > -1){
window.external.addToFavoritesBar(url,title);//IE8
}else{
try {
window.external.addFavorite(url, title);
} catch(e) {
try {
window.sidebar.addPanel(title, url, "");//firefox
} catch(e) {
alert("加入收藏失敗,請使用Ctrl+D進(jìn)行添加");
}
}
}
更多信息請查看IT技術(shù)專欄