在HTML页面中引入外部HTML文件的解决方案
发布时间:09/01 来源:未知 浏览:
关键词:
在网上看了有如下的解决方案: ( 引荐学习:html教程 )
方案一:将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 --> <h1>I am the header</h1>
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> <h1>I am the header</h1> <p>Hello World</p> <h1>I am the footer</h1> </body> </html>
以上就是在HTML页面中引入外部HTML文件的解决方案的具体内容,更多请关注百分百源码网其它相关文章!