zoukankan      html  css  js  c++  java
  • 函数,设为首页

    function setHomepage()
    {
         var url = window.location.href;
         if (document.all)
         {
                  document.body.style.behavior='url(#default#homepage)';
                  document.body.setHomePage(url);

          }
          else if (window.sidebar)
         {
                   if(window.netscape)
                   {
                    try
                       {
                        netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                    }
                     catch (e)
                     {
                       alert( "设为首页操作被浏览器拒绝,如果想启用设为首页功能,请选择信任此代码" );
                     }
           }
             var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
             prefs.setCharPref('browser.startup.homepage',url);
           }
    }
  • 相关阅读:
    再谈树形dp
    洛谷 P3627 [APIO2009]抢掠计划
    树状数组
    树形dp 入门
    洛谷P2014 选课
    洛谷P2015 二叉苹果树
    9 vue.js 被观察数组的变异方法
    8 vue的v-model指令学习
    7vue-事件修饰符
    6.vue事件绑定-click
  • 原文地址:https://www.cnblogs.com/liujinyu/p/4030587.html
Copyright © 2011-2022 走看看