<!-- 字符串模板 可以在字符串中插入变量 --> <script> var a = 10; var b = "hello world"; var c = `hello ${a} wrold`; console.log(c); </script>