您现在的位置是:首页 > 网站制作 > vue.js心得vue.js心得
截取指定字符串后面(前面)的字符串
蒙xs2021-07-15【vue.js心得】人已围观
简介抄自https://blog.csdn.net/qq_27342239/article/details/118078113
var s = "123456789+abc";
console.log(s.substring(0, s.indexOf('+')));
console.log(s.substring(s.indexOf('+') + 1, s.length));
console.log(s.substring(0, s.indexOf('+')));
console.log(s.substring(s.indexOf('+') + 1, s.length));
Tags:
很赞哦! ()
下一篇:执行permission.js