如何在新窗口中打开

Mar*_*ary 2 javascript asp.net

我有另一个问题:(这是我的剧本

<script type="text/JavaScript">
    function first()
    {
        var first = confirm("Are you sure you want to navigate away from this page?");
            if (first)
                window.location = "http://www.yahoo.com.sg"
            else
            window.close;
    }
    function second()
    {
        var second = confirm("Are you sure you want to navigate away from this page?");
        if (second)
            window.location = "http://www.google.com"
        else
            window.close;
    }
</script>


<p><b>Click the following link to enter yahoo</b></p>
<p><a href="javascript:first()"title="Opens in an external website in a new window">yahoo</a></p>

<p><b>Click the following link to check google</b></p>
<p><a href="javascript:second()" title="Opens in an external website in a new window">google</a></p>
Run Code Online (Sandbox Code Playgroud)

它不会在新窗口中打开.拜托,我需要一些帮助.任何建议或推荐?

Nau*_*hal 6

试试window.open.这将打开一个新窗口:

window.open("http://www.google.com");
Run Code Online (Sandbox Code Playgroud)

也可以看看: