js截取文件后缀名

var fileName = this.file.name.lastIndexOf(".");//取到文件名开始到最后一个点的长度

var fileNameLength = this.file.name.length;//取到文件名长度

var fileFormat = this.file.name.substring(fileName + 1, fileNameLength);//截

console.log(fileFormat);

  

原文地址:https://www.cnblogs.com/sherryweb/p/14717086.html