script 里写 html 模版

js模版引擎(例如:template.js 或 handlebars.js)一般都用<script>标签来存放模版的内容

1)模版写在<script>标签和写在<div>标签里的区别:写在<script>标签的内容默认是不加载渲染的,而写在<div>里是会被加载并渲染的(假设模版里有<img>标签,那从浏览器的控制台就能很清楚地看到加载页面时会报一个404(找不到图片))

2)模版写<script>标签里,那<script>标签一定要声明 type="text/html"

<script type="text/html" id="template">
原文地址:https://www.cnblogs.com/tujia/p/7765165.html