获得文件路径: var filePath = document.getElementById("file").value
截取文件名:
保留后缀:
* `var fileName = filePath.split('\\').pop()`
var fileName = filePath.substring(filePath.lastIndexOf('\\')+1)
不保留后缀:
* `var fileName = filePath.split(/\.|\\/).slice(-2,-1)[0]`
var fileName = filePath.substring(filePath.lastIndexOf("\\")+1,filePath.lastIndexPathOf("\."))