首页 > 代码库 > JavaScript Set Homepage and Favorite
JavaScript Set Homepage and Favorite
// JavaScript Set Homepage and Favorite// <a href="javascript:AddFavorite(window.location,document.title)">加入收藏</a>//It calls the Add Favorite dialog box in IE and links to a url in Firefox and Safari (but again not Opera ). Geovin Du//http://stackoverflow.com/questions/946189/how-can-i-set-default-homepage-in-ff-and-chrome-via-javascript//http://www.webdeveloper.com/forum/showthread.php?180428-Set-homepage-script//IE 11.0 Windows7 无效.function AddFavorite(sURL, sTitle) { try { window.external.addFavorite(sURL, sTitle); } catch (e) { try { window.sidebar.addPanel(sTitle, sURL, ""); } catch (e) { alert("加入收藏失败,请使用Ctrl+D进行添加"); } }}//<a href="http://www.mamicode.com/#" onclick="javascript:SetHome(this,window.location);" >设为首页</a>//function SetHome(obj, vrl) { 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); } }}
JavaScript Set Homepage and Favorite
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。