我想使用以下脚本打开多个不同的窗口。例如,第 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>
我尝试了很多东西,但没有任何效果。谢谢你的帮助