let fileName = this.file.name.lastIndexOf(".");//取到文件名开始到最后一个点的长度let fileNameLength = this.file.name.length;//取到文件名长度let fileFormat = this.file.name.substring(fileName + 1, fileNameLength);//截console.log(fileFormat);
JS截取文件后缀名
原文地址:https://www.cnblogs.com/xinchenhui/p/9044352.html