没有使用iframe,是可以加载的内容
<div id="siteloader"></div>
使用外部网站somesitehere.com@H_404_4@
当页面加载时? – 我知道如何从文件加载内容,但不知道如何加载整个网站?@H_404_4@
非常感谢,@H_404_4@
这可能没有iframe具体。 jQuery被使用,因为它在标题中提到。
原文链接:https://www.f2er.com/ajax/160547.html<!doctype html> <html> <head> <Meta charset="utf-8"> <title>Load remote content into object element</title> </head> <body> <div id="siteloader"></div> <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <script> $("#siteloader").html('<object data="http://tired.com/">'); </script> </body> </html>