我有 2 个 HTML 文件,假设a.html和b.html. 在a.html我想包括b.html.
a.html
b.html
在 JSF 中,我可以这样做:
<ui:include src="b.xhtml" />
这意味着内部a.xhtml文件,我可以包含b.xhtml.
a.xhtml
b.xhtml
我们如何在*.html文件中做到这一点?
*.html
在我看来,最好的解决方案是使用 jQuery:
a.html:
<html> <head> <script src="jquery.js"></script> <script> $(function(){ $("#includedContent").load("b.html"); }); </script> </head> <body> <div id="includedContent"></div> </body> </html>
b.html:
<p>This is my include file</p>
这种方法是解决我的问题的简单而干净的方法。
jQuery.load()文档在这里。
.load()