我试图使用onclick =" window.open"打开一个新窗口。由于某种原因滚动条和&可调整大小不能在IE11中工作,并且它可以正常工作但是可以正常工作。
<div class="editor-field editorholder" style="height: auto;">
<a href="@Url.Action("QuickView", "Home", new { id = @Model.UniqueKey })" class="btn-mvc" onclick="window.open(this.href,'targetWindow','toolbar=0','location=0','status=0','menubar=0,','scrollbars=yes','resizable=yes','width=100','height=100'); return false;">
<span class="glyphicon glyphicon-folder-open" aria-hidden="true"></span>
</a>
</div>
答案 0 :(得分:0)
同时添加:
scrolling=yes, scrollbars=yes
答案 1 :(得分:0)
最后我找到了一个解决方案:
onclick="window.open(this.href, 'popupwindow', 'width=1280 height=800 resizable scrollbars menubar=yes'); return false;"
谢谢