2025年01月27日 建站教程
js如何利用substring()
函数实现字符串截取,下面web建站小编给大家详细介绍一下substring()
的基本用法!
基本用法:
string.substring(A, [B])
参数介绍:
参数名 | 描述 |
---|---|
A | 介于0和1小于字符串的长度的整数。 |
B | (可选)介于0和字符串的长度的整数。 |
示列介绍:
var str = "web建站教程"; console.log('输出结果:',str.substring(1,2)) //输出结果: e console.log('输出结果:',str.substring(3)) //输出结果: 建站教程
本文链接:http://so.lmcjl.com/news/22142/