如何在HTML页面中引入外部HTML文件?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

在普通的静态html开发过程中,没必要用框架,只想用最基本的方式写几个静态页面出来,但是HTML中没有include语法,每个页面的公共部分都要手动复制粘贴一次,实在不科学

在网上看了有如下的解决方案:

方案一:将html文件转为js文件,然后在页面加载的时候将其加载进来执行渲染

方案二:使用iframe标签进行引用

方案三:使用gulp插件gulp-html-import

本人推荐使用第三种方案,使用起来也很方便,下面介绍使用步骤:

1、npm install gulp -D

2、npm install gulp-html-import -D

3、目录结构:

| -- html-import | | | -- components | | | | | -- header.html | | | | | -- footer.html | | | -- index.html | -- gulpfile.js

4、gulpfile.js

var gulp = require('gulp'); var htmlImport = require('gulp-html-import'); gulp.task('import', function () { gulp.src('./*.html') .pipe(htmlImport('./components/')) .pipe(gulp.dest('dist')); })

5、index.html

<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Gulp-html-import Example</title></head><body> @import "header.html" <p>Hello World</p> @import "footer.html"</body></html># 使用标签@import "XXX.html"引入公共页面

6、header.html

<!-- header.html --><h2>I am the header</h2>

8、gulp import 运行gulp将页面进行合并最终会生成dist目录

9、/dist/index.html

<!-- /dist/index.html --><!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Gulp-html-import Example</title></head><body> <h2>I am the header</h2> <p>Hello World</p> <h2>I am the footer</h2></body></html>

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。