使用javascript打开新浏览器窗口时出错

时间:2015-04-03 15:36:36

标签: javascript html new-window

<script>
        function myFunction() {
        var myWindow = window.open("http://www.w3schools.com" "width=200, height=100);
        }
    </script>

<a href="terms.html" onclick="myFunction()"> Terms and Conditions</a> in this term and conditions I have an onclick that calls `myFunction()` and i justenter code here have w3school as an example

对于onclick它是否必须转到已发布的网站,或者它可以是我保存在名为terms.html的硬盘上的html文件?

1 个答案:

答案 0 :(得分:2)

要回答直接问题,您应该可以从本地计算机上的文件中运行它。

但是,您的javascript中存在语法错误。在window.open()

的调用中,您在参数列表中缺少逗号和引号

而不是:

var myWindow = window.open("http://www.w3schools.com" "width=200, height=100);

试试这个:

var myWindow = window.open("http://www.w3schools.com", "width=200, height=100");