p133_anyframe.htm

来自「javascript source code part2」· HTM 代码 · 共 20 行

HTM
20
字号
<!-- 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 + =
减小字号Ctrl + -
显示快捷键?