摘要:
让我为大家介绍一下ES6新增操作字符串的七种方法吧! 1.includes() 重点 返回布尔值,判断是否找到参数字符串 let str = "hello str" // 找到返回true console.log(str.includes("h")) // true // 没找到返回false co 阅读全文
摘要:
使用CSS画一个三角形,想必部分同学都有一个小疑问,css怎么做三角形,让我为大家介绍一下吧! 第一种方法 div { width: 0; height: 0; border-style: solid; border-width: 50px; border-color: transparent tr 阅读全文