<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文件?
答案 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");