gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 16:17:34 25 4
gpt4 key购买 nike

<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");

关于javascript - 使用 JavaScript 打开新浏览器窗口时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29435226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com