javascript實現(xiàn)瀏覽器收藏網(wǎng)頁到收藏夾

字號:


    javascript實現(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進行添加");
    }
    }
    }