摘要: 很多时候你不希望你的页面被嵌入到框架或小窗体,例如,你的一个管理界面中有一个错误页面,当用户操作发生错误的时候,你希望整个页面转到错误页面而不是在框架中的某一块显示,这时候你就可以用下面的客户端方法进行判断,然后处理,在我写的这个例子中处理方法是直接将顶级窗体重定向到被镶嵌的这个页面。<html><head><title>HTMLPage1</title><script>function TopLoad(){if(top.frames.length>0){alert('The Page in one or more fr 阅读全文
posted @ 2006-04-27 16:40 ZetaChow晓代码 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 源自:cnblog DooIT : http://ttyp.cnblogs.com 事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.returnValue 鼠标位置 event.x event.y ... 阅读全文
posted @ 2006-04-27 09:53 ZetaChow晓代码 阅读(148) 评论(0) 推荐(0) 编辑