html页面嵌套其他网站页面的方法 二维码
14
<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> #注意事项:
文章分类:
技术资料
|