📄 p607_window_navigation.htm
字号:
<HTML><BODY><SCRIPT>
var win2 = null;
function open_local() { top.win2=window.open(window.location.href,'test'); }
function open_remote() { top.win2=window.open('http://www.wrox.com','test'); }
function show_it()
{
window.document.forms[0].one.value = top.win2;
window.document.forms[0].two.value = top.win2.name;
window.document.forms[0].three.value = top.win2.location.href;
}
</SCRIPT><FORM>
<INPUT TYPE="button" VALUE="Open local window" ONCLICK="open_local()">
<INPUT TYPE="button" VALUE="Open remote window" ONCLICK="open_remote()">
<INPUT TYPE="button" VALUE="Show window details" ONCLICK="show_it()">
<INPUT TYPE="button" VALUE="Go backwards" ONCLICK="window.history.go(-1)">
<BR>
Type of win2: <INPUT NAME="one" TYPE="text"><BR>
Name of win2: <INPUT NAME="two" TYPE="text"><BR>
URL of win2: <INPUT NAME="three" TYPE="text"><BR>
</FORM></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -