欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

設(shè)為首頁(yè)和收藏的Javascript代碼(親測(cè)兼容IE,Firefox,chrome等瀏覽器)

 更新時(shí)間:2013年11月18日 09:55:09   作者:  
這篇文章主要介紹了設(shè)為首頁(yè)和收藏的Javascript代碼(親測(cè)兼容IE,Firefox,chrome等瀏覽器)。需要的朋友可以過(guò)來(lái)參考下,希望對(duì)大家有所幫助

由于chrome,safari,opara 瀏覽器還未支持自動(dòng) "設(shè)為首頁(yè)" & "加入收藏".  所以我們只能try, catch一下, 給個(gè)錯(cuò)誤提示!  也算完美了.

另外ie中, 很多人也碰到過(guò) 它window.external.addFavorite.  時(shí)會(huì)報(bào)錯(cuò)的問(wèn)題.  所以俺也只好拋出提示信息了.

加入收藏:

復(fù)制代碼 代碼如下:

function addFavorite(){
    if (document.all){
        try{
            window.external.addFavorite(window.location.href,document.title);
        }catch(e){
            alert( "加入收藏失敗,請(qǐng)使用Ctrl+D進(jìn)行添加" );
        }

    }else if (window.sidebar){
        window.sidebar.addPanel(document.title, window.location.href, "");
     }else{
        alert( "加入收藏失敗,請(qǐng)使用Ctrl+D進(jìn)行添加" );
    }
}

設(shè)為首頁(yè):
復(fù)制代碼 代碼如下:

function setHomepage(){
    if (document.all){
        document.body.style.behavior='url(#default#homepage)';
          document.body.setHomePage(window.location.href);
    }else if (window.sidebar){
        if(window.netscape){
            try{
                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
            }catch (e){
                alert( "該操作被瀏覽器拒絕,如果想啟用該功能,請(qǐng)?jiān)诘刂窓趦?nèi)輸入 about:config,然后將項(xiàng) signed.applets.codebase_principal_support 值該為true" );
            }
        }
        var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
        prefs.setCharPref('browser.startup.homepage',window.location.href);
    }else{
        alert('您的瀏覽器不支持自動(dòng)自動(dòng)設(shè)置首頁(yè), 請(qǐng)使用瀏覽器菜單手動(dòng)設(shè)置!');
    }
}

相關(guān)文章

最新評(píng)論