设置 html 输入的默认文件类型:file

发布于 2024-11-06 07:10:59 字数 104 浏览 0 评论 0原文

我可以为 HTML 文件输入设置默认文件类型关联吗?例如,只有 .jpg、.bmp/.png 和 HTML 输入控件?单击“浏览”时,对话框应仅显示所有关联的文件类型,而不是通常出现的所有文件。

Can I set default file types association for HTML file input? E.g. just .jpg,.bmp/.png with the HTML input control? When browse is clicked the dialog should show just show all those associated filetypes not allfiles that usually occurs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

仅一夜美梦 2024-11-13 07:10:59

HTML

元素的 accept 属性就是用于此目的,但几乎所有网络浏览器都会忽略此可选属性。答案是 FlashJava Applet。两者都存在第三方文件上传插件。例如 UploadifySWFUploadJumpLoader。 Uploadify 有我的推荐。

The accept attribute of the HTML <form> element is meant for that, but this optional attribute is ignored by almost all webbrowsers. The answer is Flash or Java Applet. For both there exist 3rd party file upload plugins. E.g. Uploadify, SWFUpload and JumpLoader. Uploadify has my recommendation.

韬韬不绝 2024-11-13 07:10:59

不,这是不可能的。

当用户选择一个文件时,您可以在 javascript 中检查文件类型(扩展名),并据此决定是否发布表单。

但是,由于 javascript 可能会被破坏或关闭,因此您必须检查服务器端是否允许您允许的文件类型,只是为了确定。

No, this is not possible.

One a user selects a file you can check the file type (extension) in javascript and decide on the basis of that whether to post the form or not.

However, since javascript can be subverted or turned off, you will have to check server side for the file types you allow, just to be certain.

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