⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p133_anyframe.htm

📁 javascript source code part2
💻 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 + -