帧断路器仅适用于特定站点?

时间:2011-09-11 09:30:37

标签: javascript frame

我将它用于反框架:

<script language="JavaScript" type="text/javascript">
if (top.location != self.location) top.location = self.location;

如何避免对来自雅虎图片搜索的访问者进行分帧?他们有推荐人:

http://images.search.yahoo.com/

1 个答案:

答案 0 :(得分:1)

只需匹配document.referrer并采取相应措施。

if (document.referrer.indexOf('images.search.yahoo.com') === -1) {
    //break frame
}