兼容 IE 火狐设为首页 加入收藏 当前地址 js代码

作者在 2010-06-17 11:29:12 发布以下内容
<html>
<head>
<script type="text/javascript">
function addFav(){   // 加入收藏夹
if (document.all) {
   window.external.addFavorite(window.location.href, document.title);
} else if (window.sidebar) {
   window.sidebar.addPanel(document.title, window.location.href, "");
}
}

function setHomepage(){   // 设置首页
if (document.all) {
   document.body.style.behavior = 'url(#default#homepage)';
   document.body.setHomePage(window.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', window.location.href);
}
}
</script>
</head>
<body>
<a href ="javascript:void(0)" onclick ="setHomepage()"> 设为首页 </a>
<a href="javascript:void(0)" onclick ="addFav()"> 加入收藏 </a>

</body>
</html>
这段代码为什么设为首业不兼容火狐 其他的都正确
 
默认分类 | 阅读 759 次
文章评论,共0条
游客请输入验证码
文章分类
文章归档
最新评论