jquery – 如何将外部网页加载到HTML页面的div

前端之家收集整理的这篇文章主要介绍了jquery – 如何将外部网页加载到HTML页面的div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要加载响应网站到我的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>

JSFIDDLE DEMO

原文链接:https://www.f2er.com/jquery/185256.html

猜你在找的jQuery相关文章