浏览 2482 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-10-06
我们的页面上有时需要收藏或者设置主页等功能,便于用户再次访问的时候,要么收藏夹要么一打开就有,今天也来一段,方便自己喝他人以后查阅,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 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2012-10-06
呵呵,我上周也才刚搞完这个东西。
|
|
返回顶楼 | |