几乎所有的站长,都不希望自己的网站被嵌入别人的Iframe中,那么,应该怎么实现这个警戒功能呢?
对于禁止网页被frame或者iframe框架,我总结了下面两种方法供大家参考。
1.使用meta元标签
1 2 3 4 5 6 |
<html> <head> <meta http-equiv="Windows-Target" contect="_top"> </head> <body></body> </html> |
这个方法的具体效果不是很清楚的,貌似之前试过一次,但是没有效果,可能浏览器太旧了吧。
2.使用JavaScript脚本
1 2 3 4 5 6 7 8 |
function location_top(){ if(top.location!=self.location){ top.location=self.location; return false; } return true; } location_top(); // 调用 |
这个方法用得比较多,但是网上的高手也想到了破解的办法,那就是在父框架中加入脚本var location=document.location或者var location=””,所以这个方法也就不推荐了,当然唬唬不懂的还是可以的。