vue字符串常用方法、字符串模板
2022/1/15 23:10:02
本文主要是介绍vue字符串常用方法、字符串模板,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> let str = 'hello world' // 字符串常用方法 console.log(str.startsWith('e')) // false console.log(str.endsWith('d')) // true console.log(str.includes('e')) // true console.log(str.includes("lo")) // true // 字符串模板 使用反引号 let ss = `<div><span>hello world<span> </div> ` console.log(ss) // 2、字符串插入变量和表达式。变量名写在 ${} 中,${} 中可以放 入 JavaScript 表达式。 // 类似于shell传参数 let name = "张三"; let age = 18; let info = `我是${name},今年${age}了`; console.log(info) function fun() { return "这是一个函数" } // 调用函数 let s1 = `字符串模板 调用函数 ${fun()}` console.log(s1) </script> </body> </html>
这篇关于vue字符串常用方法、字符串模板的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-04React 19 来了!新的编译器简直太棒了!
- 2025-01-032025年Node.js与PHP大比拼:挑选最适合的后端技术进行现代web开发
- 2025-01-03?? 用 Gemini API、Next.js 和 TailwindCSS 快速搭建 AI 推文生成项目 ??
- 2024-12-31Vue CLI多环境配置学习入门
- 2024-12-31Vue CLI学习入门:一步一步搭建你的第一个Vue项目
- 2024-12-31Vue3公共组件学习入门:从零开始搭建实用组件库
- 2024-12-31Vue3公共组件学习入门教程
- 2024-12-31Vue3学习入门:新手必读教程
- 2024-12-31Vue3学习入门:初学者必备指南
- 2024-12-30Vue CLI多环境配置教程:轻松入门指南