1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- /**
- * 模板字符串(template string)
- * 使用反引号(`)
- */
- /**
- * 1.允许使用换行符;
- * 2.输出模板:`...${xxx}...`;
- */
- let str = `
- <ul>
- <li>1</li>
- <li>2</li>
- <li>3</li>
- </ul>
- `
- document.write(str);
- let name = '图图';
- // let result = '我的名字是' + name;
- let result = `我的名字是${name}`;
- console.log(result);
- </script>
- </body>
- </html>
|