如何从 IE8 中的输入获取文件?
我如何在 IE(8) 中获取文件,如下所示:
<input id="files" type="file">
<script>
var file = this.files[0]; //(FF, Chrome)
</script>
用于上传?
How I can get file in IE(8) like this:
<input id="files" type="file">
<script>
var file = this.files[0]; //(FF, Chrome)
</script>
for uploading?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。
IE8不支持该功能。
You can't.
IE8 doesn't support this feature.
原生文件输入框在 IE8 中没有
files
属性。然而,当用户选择一个文件时,其 URL 将成为输入元素的
value
,因此检索它是没有问题的。Native file input boxes do not have the
files
attribute in IE8.However when the user selects a file its URL becomes the
value
of the input element, so there is no problem to retrieve it.