1.substring() 方法用于提取字符串中介于两个指定下标之间的字符。
var a="我们不是冈博网";
console.log(a.substring(a.length-3));
console.log(a.substring(0,a.length-3));
1.substring() 方法用于提取字符串中介于两个指定下标之间的字符。
var a="我们不是冈博网";
console.log(a.substring(a.length-3));
console.log(a.substring(0,a.length-3));