我想在IE中打开一个新窗口,如果再次单击相同的按钮,则返回到同一窗口。
这是我的按钮:
<button id="appButton" onclick="openRequestedPopup()">
Click
</button>
这是我的功能:
function openRequestedPopup() {
var windowObjectReference = window.open(
"https://www.google.com",
"DescriptiveWindowName"
);
windowObjectReference.focus();
}
使用此代码,firefox和chrome将使用之前打开的相同选项卡,但IE将不断打开所有新选项卡/窗口。
有没有办法在IE中实现这一目标?