【发布时间】:2009-09-23 16:20:38
【问题描述】:
几年来,我一直在使用以下脚本在单击按钮时导航到用户主页。但是,随着 IE8 的启动,这不起作用,因为“about:home”似乎不再有效。
if(window.home) {
// for everything but IE:
window.home();
} else {
// for IE:
window.location = "about:home"; // IE8 will error here if the location is "about:home"
}
是否有让 Internet Explorer 8+ 导航到用户主页的新方法?脚本必须是跨浏览器的。
【问题讨论】:
-
有趣的问题......虽然我从来没有完全理解为什么要添加这个......因为用户可以随时单击主页或按 ALT+Home。
标签: javascript internet-explorer internet-explorer-8