tryit_view.asp@filename=try_dom_window_resizeto
来自「W3Schools tutorial..web designing」· ASP@FILENAME=TRY_DOM_WINDOW_RESIZETO 代码 · 共 19 行
ASP@FILENAME=TRY_DOM_WINDOW_RESIZETO
19 行
<html>
<head>
<script type="text/javascript">
function resizeWindow()
{
top.resizeTo(500,300);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="resizeWindow()" value="Resize window">
</form>
<p><b>Note:</b> We have used the <b>top</b> element instead of the <b>window</b> element, to represent the top frame. If you do not use frames, use the <b>window</b> element instead.</p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?