美文网首页
判断在iframe中

判断在iframe中

作者: 江火渔枫 | 来源:发表于2016-01-13 10:49 被阅读442次

    js判断是否在iframe中
    //方式一
    if (self.frameElement && self.frameElement.tagName == "IFRAME") {alert('在iframe中');}
    //方式二if (window.frames.length != parent.frames.length) {alert('在iframe中');}
    //方式三if (self != top) { alert('在iframe中');}

    以上有一种方法用任何一种都可以判断代码是否在iframe中.

    参考 http://blog.163.com/linyiliuzhen@126/blog/static/16481455720127710336275/

    相关文章

      网友评论

          本文标题:判断在iframe中

          本文链接:https://www.haomeiwen.com/subject/oqyckttx.html