我需要一个代码通过 onclick 事件将用户重定向到另一个窗口。我希望重定向每天发生两次,当后面有一个新窗口时,应该打开一个新窗口,比如海盗湾。
我有这个代码,它只打开一次并且在主窗口前面。
我们能做什么?
提前致谢。
<!-- INICIO DO CÓDIGO -->
<script>
function PopShow3() {
var wn = window.open( & quot; & quot;, & quot; PopWin3 & quot;, & quot; width = & quot; + screen.width + & quot;, height = & quot; + screen.height + & quot;, resizable = 1, toolbar = 1, location = 0, menubar = 0, status = 1, scrollbars = 1 & #39;"
);wn.location.href= & #39;http://google.com/&# 39;; wn.focus(); document.onmouseup = & quot; & quot;;
}
var cookieString = document.cookie;
var start = cookieString.indexOf( & quot; kmr9eE1 = & quot;);
if (start == -1) {
var expires = new Date();
expires.setTime(expires.getTime() + 1 * 24 * 60 * 1000);
document.cookie = & quot;
kmr9eE1 = update;
expires = & quot; + expires.toGMTString();
document.onmouseup = PopShow3;
}
</script>
<!-- FIM DO CÓDIGO -->