19.5.htm
来自「精通JavaScript动态网页编程(书)」· HTM 代码 · 共 19 行
HTM
19 行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Image Display Window</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<img name="displayedImage" id="displayedImage" alt="" src="image1.gif">
<script type="text/javascript">
var remoteControlURL = "19.6.htm";
var remoteFeatures = "height=150,width=400,location=no,";
remoteFeatures += "menubar=no,scrollbars=no,status=no,toolbar=no";
var remoteControl =
window.open(remoteControlURL, "controlWindow", remoteFeatures);
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?