字符串变成数组,常用来获取数组中我们需要的值。
var str="http://op/adfie/life.png"; let arr=str.split('.'); console.log("字符串变成数组",arr) ["http://op/adfie/life", "png"]