window_reference.htm
来自「不错的javascript学习资料适合于刚刚学习javascirpt的出学者」· HTM 代码 · 共 23 行
HTM
23 行
<html><head><title>Getting and using a window reference</title>
<script language="JavaScript">
<!-- hide me
// open a new window and get a reference to it
var new_window = window.open("hello.html","html_name","width=200,height=200");
// blur the new window
new_window.blur();
// show me -->
</script>
</head>
<body>
<h1>A new window has been opened and moved to the background.</h1>
<a href="#" onMouseOver="new_window.focus();">Bring it forward</a><br>
<a href="#" onMouseOver="new_window.blur();">Put it backward</a><br>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?