onclick="return PopupDocument(this.href,'myPop1',630,420)"
在IE11中,当我们点击链接时,新窗口没有调整大小,谷歌浏览器中我可以调整新窗口的大小
答案 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();
});
});