js获取文件名称(去掉扩展名)

//获取uuid文件名称(去掉扩展名)
function getFileName(data) {
        return data.substring(0,data.indexOf("."));
    }

你可能感兴趣的:(js,js)