设置收藏夹和首页的js代码

 

// JavaScript Document
 //添加到收藏夹 
 // 调用方法:
 // <a href="Javascript:void(0)" onclick="AddToFavorite()" title="如果您喜欢本网站,请点击此处<br>加入您的收藏夹中">加入收藏</a>
 function AddToFavorite() 
 { 
     if (document.all){ 
        window.external.addFavorite(document.URL,document.title); 
     }else if (window.sidebar){ 
        window.sidebar.addPanel(document.title, document.URL, ""); 
     } 
 } 
  
 
/**
* 设为首页 调用方法:
* <a href="javascript:void(0);" target="_self" onclick="setHomepage(this)">设为首页</a>
*/
function setHomepage(obj){
 vrl = document.URL;
 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);
  }
 }
}

你可能感兴趣的:(设置收藏夹和首页的js代码)