如何在网页中显示外部HTML页面-使用JavaScript

时间:2018-12-18 18:23:44

标签: javascript html

我需要在另一个页面中显示一个现有的html页面。 object>标记将其显示在iframe中-我不想要。

我在这里阅读:https://stackoverflow.com/questions/17148357/including-external-html-file-to-another-html-file

可以用这段JavaScript来完成:

2^{number of processes}-1

在此之前,我先插入:

<script type="text/javascript">
$(document).ready(function(e) {
    $('#header').load('name.html',function(){alert('loaded')});
});
</script>

但是我得到了错误: DOMException:无法在元素上执行“ querySelectorAll”

我错过了什么?

PS。我尝试了document.write + =“ html + javascript-goes-here”方法,但是外部页面内容很大,因此document.write很长,很麻烦,因此以后很难理解/维护。

enter image description here

1 个答案:

答案 0 :(得分:0)

感谢stackOverflow-一旦发现“ $未定义”错误msg,它便开始运行。 围绕我的功能:

(function($){
.... function here ...
})(jQuery);

和:

<div id="header"></div>

在体内。