包括来自另一个网站的html文件?

时间:2018-06-28 18:40:01

标签: javascript jquery html html5

我尝试过此方法,但它在其他网站上不起作用

newFile

<script src="https://code.jquery.com/jquery-1.10.2.js"></script>    
<script> 
    $(function(){
      $("#includedContent").load("https://mywebsite.com/file.html"); 
    });
</script>

2 个答案:

答案 0 :(得分:1)

您必须使用iframe标记来加载html页面。 iframe是可用于将其他html页面调用到您的网页中的标签

<iframe src="http://www.google.co.in" name="targetframe" allowTransparency="true" scrolling="no" frameborder="0" >
    </iframe>

答案 1 :(得分:0)

尝试一下:

<iframe src="https://www.my website.com/file.html"></iframe>

如果这不起作用,只需对此答案发表评论。