load.js 220 B

12345678
  1. $(function() {
  2. //引入公共页面
  3. $(document).ready(function() {
  4. $('.header').load('/component/header.html');
  5. $('.footer').load('/component/footer.html');
  6. $('.ad-box').load('/component/adModule.html');
  7. });
  8. });