var inval=0;
function openNewPage(url){
    if(inval>5){
        var newWin=window.open(url,"newwindow");
        newWin.blur();
        self.focus();
    }
    else{
        var scall="openNewPage('"+url+"')";
        setTimeout(scall,1000);
        inval++;
    }
}

相关文章:

  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-19
  • 2022-12-23
  • 2021-12-19
  • 2022-01-21
  • 2022-02-12
  • 2021-12-19
  • 2021-12-19
相关资源
相似解决方案