美文网首页
JavaScript避免浏览器阻止打开新窗口

JavaScript避免浏览器阻止打开新窗口

作者: Herman7z | 来源:发表于2018-03-22 14:45 被阅读0次
    $(window).click(function () {     
      //Ajax 请求毁掉函数中打开新窗口     
      var w = window.open();     
      $.get('../view/test.html', function (data) {         
        w.location.href = '../view/test.html';     
      })
    });
    

    参考链接:http://www.cnblogs.com/tianma3798/p/5461266.html

    相关文章

      网友评论

          本文标题:JavaScript避免浏览器阻止打开新窗口

          本文链接:https://www.haomeiwen.com/subject/ddyaqftx.html