标签: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 }
标签:style blog color io 使用 ar div sp log
原文地址:http://www.cnblogs.com/SLEBEE/p/3959471.html