ASCII码 ASCII码

模板字面量与模板函数实例

发布于:2022-04-02 12:27:54  栏目:技术文档
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>模板字面量与模板函数</title>
  8. </head>
  9. <body>
  10. <script>
  11. console.log('Hello world');
  12. // 反引号:支持在字符串插入变量/表达式:插值
  13. console.log(`Hello world`);
  14. let name = '小鸟';
  15. console.log(`Hello ${name}`);
  16. let gender = 1;
  17. console.log(`${gender ? '男' : '女'}`);
  18. console.log(`${gender ? `男:{name}` : '女'}`);
  19. //多行连续字符串的写法
  20. console.log(`
  21. asdf
  22. asdf
  23. adsf
  24. asdf
  25. asdf
  26. `);
  27. // 模板函数
  28. //使用模板字面量为参数的函数
  29. // alert(`Hello php.cn`);
  30. // alert `Hello php.cn`;
  31. calc `数量:${20} 单价:${500}`;
  32. // 模板函数的参数:
  33. // 第一个参数:模板字面量中的”字符串字面量“
  34. // 第二个参数:插值组成的数组
  35. function calc(strings, ...args){
  36. console.log(strings);
  37. console.log(args);
  38. console.log('总金额:'+args[0]*args[1]);
  39. }
  40. </script>
  41. </body>
  42. </html>
相关推荐
阅读 +