Javascript---add to favorite | Set Homepage


<!-- 設為首頁 -->
<li><a href="javascript:setHome(this,window.location)">
    <span class="glyphicon glyphicon-home"></span> <b>設為首頁</b></a>
</li> 
<!-- 加入收藏 -->
<li><a href="javascript:addFavorite()">
    <span class="glyphicon glyphicon-heart"></span> <b>加入收藏</b></a>
</li>


<script type="text/javascript">
    function addFavorite() {
        var url = window.location;
        var title = document.title;
        var ua = navigator.userAgent.toLowerCase();
        if (ua.indexOf("msie 8") > -1) {
            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進行添加");
                }
            }
        }
    }


    //設為首頁 <a onclick="setHome(this,window.location)">設為首頁</a>
    function setHome(obj,vrl){
        try{
            obj.style.behavior='url(#default#homepage)';obj.setHomePage(vrl);
        }
        catch(e){
            if(window.netscape) {
                try {
                    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                }
                catch (e) {
                    alert("此操作被瀏覽器拒絕!\n請在瀏覽器地址欄輸入“about:config”並回車\n然后將 [signed.applets.codebase_principal_support]的值設置為'true',雙擊即可。");
                }
                var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
                prefs.setCharPref('browser.startup.homepage',vrl);
            }
        }
    }

</script>

---------------------

本文來自 QC班長 的CSDN 博客 ,全文地址請點擊:https://blog.csdn.net/qq_35624642/article/details/76020134?utm_source=copy 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM