Javascript在新窗口中打开一个新URL

时间:2013-11-12 22:07:03

标签: javascript internet-explorer

我正在尝试使用“window.open”方法在新窗口中打开URL。这是我的代码,它无法正常工作,它会在同一个标​​签页中保持打开URL。

如果我有任何错误,请告诉我。

function checkVersion() {
    var msg = "";
    var ver = getInternetExplorerVersion();

    if (ver > -1) {
        if (ver >= 8.0)
            msg = "You're using a recent copy of Internet Explorer."
        else
            msg = "You should upgrade your copy of Internet Explorer.";

    }
    if (msg != "") {
        alert(msg);
        window.open('http://windows.microsoft.com/en-us/internet-explorer/download-ie', '_blank');
        window.focus();
    }

1 个答案:

答案 0 :(得分:1)

要在新标签页中打开一个窗口,您可以提供一些高度\宽度规格,以便在新窗口而不是标签页中打开。

这是一个相关的堆栈溢出问题。 JavaScript open in a new window, not tab

编辑:样本。

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>

    <script type="text/javascript">

        function openTab() {
            window.open('http://stackoverflow.com', '_blank');
        }

        function openWindow() {
            window.open('http://stackoverflow.com', '_blank', 'height=200');
        }


    </script>

</head>
<body>
    <button onclick="openTab()">Open Tab</button>&nbsp;
    <button onclick="openWindow()">Open Window</button>
</body>
</html>