TrustDataSpace/assets/js/components.js
sichan d267174852 初始化项目结构
- 创建基础HTML页面布局
- 添加医疗场景页面
- 设置基本页面导航结构"
2025-01-03 09:41:43 +08:00

16 lines
496 B
JavaScript

// 加载组件
document.addEventListener('DOMContentLoaded', function() {
// 加载 header
fetch('/components/header/header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
// 加载 footer
fetch('/components/footer/footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
});