substr方法:
text.substr(start[,length]);
text:要提取子字符串的字符串或String对象。必选
start:子字符串的起始位置。以0开始索引。必选
length:返回字符串的个数。可选
如length为0或负数,将返回空字符串。如没指定,则返回以start开始到结尾的子字符串。
substring方法:
text.substring(start,end)//从start开始,到end结束的子字符串。不包括end的字符串
时间: 2024-10-12 21:00:28