x
 
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript 模板字面量</h2>
<p>模板字面量使用反引号 (``) 而不是引号 ("") 来定义字符串:</p>
<p id="demo"></p>
<p>Internet Explorer 不支持模板字面量。</p>
<script>
let text = `Hello world!`;
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>