如何使用与此类似的代码获取上传到表单(帖子)的文件名称:
frm.name.value
frm.password.value
frm.email.value
如何获取frm.file的名称?我想要"同义词" $ _ FILES [" FILE"] [" NAME"] 。
需要没有jQuery的纯JavaScript代码。
根据HTML5 API,应该是 frm.file.name ,但这不起作用。它在basadate上返回null。
答案 0 :(得分:0)
<input type="file" onchange="alert(this.value)" />
对于大多数浏览器,它会提醒C:\fakepath\filename.extention
。然后,您可以切断开头以获取文件名。