// ヘッダー function header(rootDir, fileName) { $.ajax({ url: rootDir + fileName, cache: false, async: false, dataType: 'html' }).done(function(html) { html = html.replace(/\{\$root\}/g, rootDir); document.write(html); }); } // フッター function footer(rootDir, fileName) { $.ajax({ url: rootDir + fileName, cache: false, async: false, dataType: 'html' }).done(function(html) { html = html.replace(/\{\$root\}/g, rootDir); document.write(html); }); }