iframe

作者: 感光狗 | 来源:发表于2019-07-18 17:05 被阅读0次

    iframe 元素会创建包含另外一个文档的内联框架(即行内框架)。

    自适应 iframe

    默认情况下,iframe会自带滚动条,不会全屏,如果你想自适应 iframe 的话:去掉滚动条

    <iframe src="./iframe.html" id="iframe1" scrolling="no"></iframe>
    

    防嵌套网页

    使用iframe来拦截click事件。因为iframe享有着click的最优先权,当有人在伪造的主页中进行点击的话,如果点在iframe上,则会默认是在操作iframe的页面。通过诱导用户进行点击。
    使用window.top来防止网页被别的网站嵌入

    if( window != window.top ){
      widnow.top.location.href = correntURL
    }
    

    通过host来判断

    try{
      top.location.hostname;
      if( top.location.hostname != window.location.hostname ){
        top.location.href = window.location.href
      }
    }
    catch( e ){
      top.location.href = window.location.href;
    }
    

    参考

    https://www.cnblogs.com/hq233/p/9849939.html

    相关文章

      网友评论

          本文标题:iframe

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