onclick イベントを通じて、ユーザーを別のウィンドウにリダイレクトするコードが必要です。リダイレクトが 1 日に 2 回行われるようにしたいのですが、海賊湾のように、新しいウィンドウが後ろに開く必要があります。
私はこのコードを持っています。それはメインウィンドウの前で一度だけ開きます。
私たちは何ができる?
前もって感謝します。
<!-- 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 -->