不必设置为首页,只需要在连接到首页的连接href改为这个页面就可以了~
如果是浏览器打开的首页,那就是在浏览器设置中更改:(chrome)
(Firefox)
var homePage = {is : function(url) { //IE判断当前页面是否主页
url = url || window.location.href
if (document.all) {
// http://msdn.microsoft.com/en-us/library/ms531394.aspx
document.body.style.behavior='url(#default#homepage)'
return document.body.isHomePage(url)
}
return false
},
set : function(url) { //除了Chrome之外的FF和IE的设置方法
try {
url = url || window.location.href
if (document.all) {
if (!homePage.is(url)) {
document.body.style.behavior='url(#default#homepage)'
document.body.setHomePage(url)
return homePage.is(url)
}
return true
} 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-service1']
.getService(Components.interfaces.nsIPrefBranch)
prefs.setCharPref('browser.startup.homepage',url)
return true
}
// Not support exception
return false
} catch (e) {
return false
}
}
}
对于Chrome暂时没有解决方案,上面的代码兼容IE和FF:
> homePage.set(window.location.href)在首页按ctrl+u,就可以看到源代码,如果你能进入网站ftp的话,就把网站根目录下的index.html,或者是index.php(index开头的就行)下载下来,这就是网站首页html代码首页也是一个普通网页文件,可以是HTML,ASP,PHP,ASPX..等格式,但首页文件名一般为index.html, index.asp, index.php, index.aspx等,但可以IIS中重新指定其它文件名的。