我想在单击“注销”按钮时关闭 Internet Explorer 的当前选项卡。这是一个要在我的 Web 应用程序中实现的新功能。我的应用程序仅支持 Internet Explorer。注销按钮所在的页面是window.close()的许多页面的组合不起作用。
我在 vbscript 中使用了以下代码来关闭 Internet Explorer 的当前浏览器窗口:
if(window.opener = Empty) then
dim x
x = "<%=Request.Browser.MajorVersion%>"
if(x="6") then
window.parent.opener = "x"
window.parent.close
else
'I need code for closing the tab here for IE7
end if
end if
我使用“<%=Request.Browser.MajorVersion%>”来获取 Internet Explorer 的版本。如果是 IE6,那么代码可以正常工作,因为 IE6 中没有选项卡功能,但是如何关闭 IE7 的当前选项卡。请在这种情况下帮助我,以便我也可以关闭 IE7 的当前选项卡。提前感谢!