首页 > 代码库 > html动态包含页面

html动态包含页面

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Document</title><script type="text/javascript" src="jquery-2.1.1.js"></script><script type="text/javascript">$(document).ready(function(){$("#top").load("A.html",function(){/* Stuff to do after the page is loaded */});$("#footer").load("B.html",function() {});});</script></head><body><div id="top"></div>    <div id="content">sssssss</div><div id="footer"></div></body></html>

 

html动态包含页面