0
<!DOCTYPE html>
<html>
<body>
<p>Click the button to open an about:blank page in a new browser window that is 200px wide and 100px tall.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var myWindow = window.open("bigpage.html", "resizable=0,menubar=0,scrollbars=0,fullscreen=0,titlebar=0", "width=2000,height=1000");
}
</script>
</body>
</html>
可能的重複[如何禁用最小化,最大化瀏覽器中的按鈕?](http://stackoverflow.com/questions/4754823/how-to-disable-minimize-maximize-button-in-the-browser) – Tibrogargan