Ajax/jQuery – 在网页加载时将网页内容加载到div中?

前端之家收集整理的这篇文章主要介绍了Ajax/jQuery – 在网页加载时将网页内容加载到div中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
没有使用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>
原文链接:https://www.f2er.com/ajax/160547.html

猜你在找的Ajax相关文章