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

Error opening a new browser window using javascript

<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 文件吗?

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

但是,您的 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");