没有使用iframe,是可以加载的内容
<div id="siteloader"></div>
使用外部网站somesitehere.com
当页面加载时? – 我知道如何从文件加载内容,但不知道如何加载整个网站?
非常感谢,
这可能没有iframe具体。 jQuery被使用,因为它在标题中提到。
<!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>