如何从 IE8 中的输入获取文件?

发布于 2024-11-15 00:02:05 字数 183 浏览 3 评论 0原文

我如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老街孤人 2024-11-22 00:02:05

你不能。
IE8不支持该功能。

You can't.
IE8 doesn't support this feature.

好多鱼好多余 2024-11-22 00:02:05

原生文件输入框在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文