问题
When using window.open with below given code, there is issue in closing the Window, Minimizing the window, and maximizing the window.
window.open(url, '_blank', "height=" + winH + ",width=" + winW + ",fullscreen=yes");
After pressing win+D
(minimizing all windows), and opening only the new window, the above mentioned buttons (Minimize, Maximize, Close) were working.
回答1:
On Build 10162, I got it working here on this JSFiddle http://jsfiddle.net/RamiSarieddine/wu09fh1d/
window.open("http://dev.modern.ie/community/","_blank","height=500,width=500,scrollbars=yes,location=yes");
you can see the window opening with height 500, width 300 with a scroll bar, mini-maximize and close button. Check the screenshot below.

来源:https://stackoverflow.com/questions/30635314/opening-a-new-window-using-window-open-in-microsoft-edge-isnt-working