📄 ex12-6.htm
字号:
<html><head><title>focus()方法演示 </title>
<script language="JavaScript">
<!--
var winObj;
function newWindow(){
winObj=window.open("fish.jpg",
"summer","width=400,height=300,resizable=yes,scrollbars=yes");
winObj.moveTo(0,0); //将窗口移动到屏幕左上角
winObj.focus();
}
function closeWindow(){
winObj.close();
}
// -->
</script>
</head>
<body bgColor="lightgrey">
<h2>海洋风光 </h2>
<form>
<input type=button
value="打开窗口并得到焦点"
onClick="newWindow();">
<input type=button
value="关闭窗口"
onClick="closeWindow();">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -