1 'use strict'; 2 3 4 // es5 5 let name = 'mrs'; 6 let qb = 20; 7 8 function logs() { 9 return 'goods!';10 }11 12 13 let html = '' +14 ' hello' +15 ' ' + name + '' +16 '';17 18 console.log(html);19 20 21 // es6 -模板22 let es6html = `2324 hello2531 `;32 33 console.log(es6html);26
- ${name}
27- ${qb}
28- ${logs()}
2930
注意:es6模板的内容框选是``键盘左上角的重音符 ,而es5是双引号或单引号.