字符串
Posted peilin-liang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串相关的知识,希望对你有一定的参考价值。
1.多了两个新方法
startsWith():是否以某个东西开头
let ste="sdfdfdsfdsf";
alert(ste.startsWith(‘a‘))
let str="http://www.baidu.com"; if(str.startsWith(‘http://‘)){ alert(‘普通网址‘) }else if(str.startsWith(‘https://‘)){ alert(‘加密网址‘) }
endsWith
let str = ‘1.txt‘; if(str1.endsWith(‘.txt‘)){ alert(‘文本文件‘) }else{ alert(‘其他文件‘) }
2.字符串模板
let a=12; let str =`a${a}bc`; //``是反单引号 用来包含字符串模板 ${}是引入变量 alert(str)
a.直接把东西塞到字符串里面 ${东西}
b.可以折行
以上是关于字符串的主要内容,如果未能解决你的问题,请参考以下文章