码迷,mamicode.com
首页 > 其他好文 > 详细

关于iframe

时间:2014-09-06 16:00:23      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   div   sp   log   

网页内操纵iframe内元素:iframe.contentWindow.document.getElementById(id);

iframe网页元素操纵外部网页元素:iframe内 window.parent.getElementById(id);

多重嵌套的情况下  window.top 表示获取的是最外层网页的window, 而window.parent 获取到的window则是上一层的网页的window;

由此可以针对某些使用iframe嵌套的钓鱼网站反钓鱼

在网页内判断

1 //当前的window对象不是最外层的winddow对象时
2 if(window != window.top){
3    window.top.location.href = window.location.href;      
4     //将最外层对象的连接改为当前window 域名链接 
5 }

 

关于iframe

标签:style   blog   color   io   使用   ar   div   sp   log   

原文地址:http://www.cnblogs.com/SLEBEE/p/3959471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!