通过 window.open 可以达到目的。window.open('https://notbucai.com', '_blank', 'width=800px,height=600px,menubar=no,resizable=no,status=no,toolbar=no')具体可以参考:https://developer.mozilla.org...
window.open myWindow=window.open('','','width=200,height=100'); myWindow.document.write("<p>这是'我的窗口'</p>"); myWindow.focus();
通过 window.open 可以达到目的。
具体可以参考:https://developer.mozilla.org...