我在 JavaScript 中编写了以下代码,以在按下按钮时打开一个弹出窗口,然后使用 setInterval 每 2 秒移动一次窗口。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "utf-8">
<title> Javascriptin' Some Codes </title>
<script>
function hi() {
var printOut = window.open("http://www.google.com","_blank", 'height=200, width=200');
setInterval(function() { printOut.moveBy(10,10);}, 2000)
window.alert("hi");}
</script>
</head>
<body>
<button onclick="hi()"> Try me </button>
</body>
</html>
窗口打开,但 setInterval 似乎不起作用 - 窗口在启动后不会移动。我想知道为什么我的代码不起作用,以及我可以做些什么来让它按照我想要的方式运行。