0

次のスクリプトを使用して、複数の異なるウィンドウを開きたいと思います。例えば、1位はgoogle.com、2位はyahoo.com、3位はstackoverflow.com……。

<script type="text/javascript">
pup = 0;

function pop() {
    if (pup === 0) {
        win2 = window.open('http://google.com', 'pop', 'toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0,copyhistory=0,menuBar=0,width=1,height=1,');
        setTimeout("win2.close()", 2500)
        window.focus(); // supprimez ces 2 lignes si vous voulez un popup
        pop.blur(); // laissez les pour un popunder
        pup = 1;
    }
}
document.onclick = pop;
</script> 

私は多くのことを試しましたが、何もうまくいきません。ご協力いただきありがとうございます

4

0 に答える 0