我正在使用Electron Framework开发应用程序。我必须在所有页面中包含header.html和footer.html等静态部分。 我怎么能用javascript做到这一点? (相当于php'包含'的东西。)
我试过这个
<script>
$(function(){
$("#includedContent").load("header.html");
});
</script>
<div id="includedContent"></div>
但是在html内容加载之前有一个滞后(不是很好看)我会避免这种滞后