我认为最好的解决方案是使用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>
这种方法是解决我的问题的简单干净的方法。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)