zoukankan      html  css  js  c++  java
  • 加入收藏夹和设为首页

    下面是从Yes515拷贝过来的代码,还没有详细分析,备用

        function addCookie(){
            // 加入收藏夹
            if (document.all){
                window.external.addFavorite(location.href, document.title);
        }else if (window.sidebar){
                window.sidebar.addPanel(document.title, location.href , "");
            }
        }
       
        function setHomepage(){
        //  设置首页
        if(document.all){
                document.body.style.behavior = 'url(#default#homepage)';
                document.body.setHomePage(location.href);
            }else if(window.sidebar){
                if(window.netscape){
                    try{
                        netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                    }catch (e){
                        alert("该操作被浏览器拒绝,如果想启用该功能,请在地址栏内输入 about:config,然后将项 signed.applets.codebase_principal_support 值该为true");
                    }
                }
                var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
                prefs.setCharPref('browser.startup.homepage', location.href);
            }
        }
    if(document.all),如果是ie浏览器,返回true

  • 相关阅读:
    C++---const
    qt--textEdit多行文本编辑框
    qt--QByteArray字节数组
    qt5--拖放
    qt5--自定义事件与事件的发送
    qt5--键盘事件
    qt5--鼠标事件
    qt5-事件过滤器
    qt5-event事件的传递
    qt-事件的接受和忽略
  • 原文地址:https://www.cnblogs.com/wang7/p/2783105.html
Copyright © 2011-2022 走看看