源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> </head> <body> <h2>JavaScript 模板字面量</h2> <p>模板字面量使用反引号 (``) 来定义一个字符串:</p> <p id="demo"></p> <p>Internet Explorer 不支持模板字面量。</p> <script> let text = `He's often called "Runoob"`; document.getElementById("demo").innerHTML = text; </script> </body> </html>
运行结果: