我尝试过此方法,但它在其他网站上不起作用
newFile
和
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function(){
$("#includedContent").load("https://mywebsite.com/file.html");
});
</script>
答案 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>
如果这不起作用,只需对此答案发表评论。