标签: javascript php jquery html
使用PHP时,我写道:
<?php include('foo.html');?> <?php include('bar.html');?>
我尝试了jQuery,但我不满意,因为我必须指定我必须加载HTML页面的容器。
$('.container').load('foo.html');
我需要与PHP相同的结果,但使用JavaScript。并加载多个文件。
任何帮助
答案 0 :(得分:-1)
我找到的东西可能与你想要的东西相匹配
How can I load multiple html files from a folder into a div
Query load multiple html files in one element