// JavaScript Document // 加入收藏 <a onclick="AddFavorite(window.location,document.title)">加入收藏</a> function AddFavorite(sURL, sTitle) { try { window.external.addFavorite(sURL, sTitle); } catch (e) { try { window.sidebar.addPanel(sTitle, sURL, ""); } catch (e) { alert("加入收藏失敗,請使用Ctrl+D進行添加"); } } } //設為首頁 <a onclick="SetHome(this,window.location)" >設為首頁</a> function SetHome(obj, vrl) { //debugger; //谷歌下vrl為數組對象非字符串 var homePage='wwww.baidu.com'; try { obj.style.behavior = 'url(#default#homepage)'; obj.setHomePage(homePage); } 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', homePage); } } }