无需
iframe专门的操作就可以做到。由于标题中提到了jQuery,因此使用了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://pre.jquery.com/jquery-1.7.2.min.js"></script> <script> $("#siteloader").html('<object data="http://tired.com/">'); </script> </body></html>


