我将使用asp.net中的文件上传控件上传文件。现在我想使用java脚本获取没有扩展名的文件名。 我想验证文件名应该只是整数格式
$(function () {
$('#<%=File1.ClientID %>').change(function () {
var uploadcontrol = document.getElementById('<%=File1.ClientID%>').value;
})
})
答案 0 :(得分:7)
试试这个:
$('#test').change(function() {
//something like C:\fakepath\1.html
var fpath = this.value;
fpath = fpath.replace(/\\/g, '/');
var fname = fpath.substring(fpath.lastIndexOf('/')+1, fpath.lastIndexOf('.'));
console.log(fname);
});
答案 1 :(得分:3)
您可以将其拆分为最后一个点('。')
var uploadcontrol = document.getElementById('<%=File1.ClientID%>').value;
uploadcontrol = uploadcontrol.split('.')[uploadcontrol.split('.').length - 2];
但是,
这仅适用于简单的案例......给出了更好的通用答案 How to get the file name from a full path using JavaScript?
在通用解决方案中处理这些事情