gpt4 book ai didi

javascript window.open 不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 05:41:03 24 4
gpt4 key购买 nike

我想使用 window.open 打开我的一个 JSP 文件的窗口。但是浏览器一直显示 connecting..。甚至每次单击文本时 Firebug 都会停止工作。 pinput 标签都不起作用,但是当我使用 href 链接 JSP 时,它可以链接到文件:

<!DOCTYPE html>
<html>
<head><title>Sample JSP Page</title>
<script>
function open(){
//window.open("hello.jsp","hello","height=700, width=800");
var x=window.open("hello.jsp","window","status=1,height=700, width=800");
x.focus();
}
</script>
</head>
<body>
<h1>Sample JSP Page</h1>
<p onclick="open()">do not work</p>
<form>
<input type="button" value="new window" onclick="window.open('test-with-utils')"></form>
</body>
</html>

最佳答案

那是因为你在定义函数open时,重新定义了window.open。请改用其他函数名称。

关于javascript window.open 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13373016/

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