📄 p133_anyframe.htm
字号:
<!-- anyframe.htm -->
<HTML><BODY><SCRIPT>
document.write('This is the frame named "'+self.name+'"'); // visible content
function handle_it(e) // ordinary event handler, e is the event
{
alert("Caught by frame: " + window.name);
if ( window.name == "first" )
alert("Preventing infinite loop");
else
return top.first.handleEvent(e);
return true;
}
window.onMouseDown = handle_it; // assign handler
window.captureEvents(Event.MOUSEDOWN); // in this case, filter just one event
</SCRIPT></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -