当我们点击IE11中的链接时,新的POP UP WINDOW调整大小没有调整大小

时间:2018-04-17 17:21:17

标签: javascript html internet-explorer-11

onclick="return PopupDocument(this.href,'myPop1',630,420)" 

在IE11中,当我们点击链接时,新窗口没有调整大小,谷歌浏览器中我可以调整新窗口的大小

1 个答案:

答案 0 :(得分:0)

您可以使用<script src="https://npmcdn.com/vue/dist/vue.js"></script></script> <div id="app" class="container-fluid"> <div class="row"> <div class="col-xs-12"> <div id="clines" class="table-responsive ctable"> <base-table></base-table> </div> </div> </div> </div>的{​​{3}}打开可调整大小的弹出窗口:

window.open
document.querySelectorAll('a.popup_link').forEach(function(el) {
  el.addEventListener('click', function(e) {
    window.open(this.href, 'myPop1', 'width=630,height=420,resizable=yes');
    e.preventDefault();
  });
});