我需要在另一个页面中显示一个现有的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很长,很麻烦,因此以后很难理解/维护。
答案 0 :(得分:0)
感谢stackOverflow-一旦发现“ $未定义”错误msg,它便开始运行。 围绕我的功能:
(function($){
.... function here ...
})(jQuery);
和:
<div id="header"></div>
在体内。