我正在尝试使用window.history.length来检测用户是否正在打开新标签页。它适用于FireFox,但我无法在IE 9或Chrome中使用它。我是Javascript的新手。谁能帮我吗?这是我的代码:
if (window.history.length == 1) {
window.location.href = getBaseURL() + '/Pages/EstimateList.aspx';
}