我需要加载响应网站到我的HTML页面中的div,而不使用iframe元素。
我试过this link;它的工作单页的URL,我在脚本中提到。
$('#mydiv').load('http://localhost/qa/ask#external-div',function(response,status,xhr) { if (status == "error") { var msg = "Sorry but there was an error: "; alert(msg + xhr.status + " " + xhr.statusText); } });
解决方法
使用简单的html,
<div> <object type="text/html" data="http://validator.w3.org/" width="800px" height="600px" style="overflow:auto;border:5px ridge blue"> </object> </div>
或者jquery,
<script> $("#siteloader") .html('<object data="http://your-website-domain"/>'); </script>