其他分享
首页 > 其他分享> > js截取字符串

js截取字符串

作者:互联网

var time = '2021年10月21日'
var newtime = time.substring(5,11);
console.log(newtime); // 10月21日

https://www.w3school.com.cn/jsref/jsref_substring.asp
在这里插入图片描述

标签:10,21,截取,jsref,js,substring,var,time,字符串
来源: https://blog.csdn.net/AAAXiaoApple/article/details/121516608