javascript实现兼容IE chrome firefox等主流浏览器的设置主页收藏页面代码

终于周六了,可以好好休息下。赶项目,jquery特效忙的马不停蹄,需求一直在变化,唯一不变的,去解决一个又一个的bug。
我们的页面上有时需要收藏或者设置主页等功能,便于用户再次访问的时候,要么收藏夹要么一打开就有,今天也来一段,方便自己喝他人以后查阅,http://www.jqueryba.com/548.html。
function addCookie(){  // 加入收藏夹
if (document.all){
window.external.addFavorite('http://www.jqueryba.com', 'jquery博客');
}else if (window.sidebar){
window.sidebar.addPanel('jquery博客', 'http://www.jqueryba.com', "");
}
}

function addCookie2(){
try{
window.external.AddFavorite('http://www.jqueryba.com','jquery博客');
}catch(e){
(window.sidebar)?window.sidebar.addPanel('jquery博客','http://www.jqueryba.com',''):alert('请使用按键 Ctrl+d,收藏jquery博客');
}
}

function setHomepage(){  // 设置首页
if (document.all){
document.body.style.behavior = 'url(#default#homepage)';
document.body.setHomePage('http://www.jqueryba.com');
}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', 'http://www.jqueryba.com');
}
}
在线效果DEMO

转自 jquery http://www.jqueryba.com/548.html

你可能感兴趣的:(收藏页面代码)