html页面嵌套其他网站页面的方法

2022-01-18

<div>

<!--第一种:使用object标签-->

    <object type="text/html" data="http://so.soseo.cc" style="width:1000px; height:1000px">

        <p>backup content</p>

    </object>


    <!--第二种:使用iframe 标签-->

    <iframe src='http://so.soseo.cc' style="width:1000px; height:1000px"></iframe>

</div>


    <!--第三种:先弹出一个页面,再在这个页面使用window.location.href重定向到网页-->

<script>

    window.location.href='http://so.soseo.cc';

</script>



#注意事项:
1.如果自己的页面是https协议,被嵌套的页面是http协议,chrome浏览会提示不安全,直接拦截,不让加载。

阅读26
分享
写评论...