html – 如何创建仅接受pdf和doc的文件字段

前端之家收集整理的这篇文章主要介绍了html – 如何创建仅接受pdf和doc的文件字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用输入类型文件只接受pdf和doc文件.
<input type="file" id="test" name="test" accept="application/msword,text/plain,application/pdf"/>

这是在Windows中工作,但在ubunthu中,它只接受pdf文件

解决方法

将您的代码更改为:
<input type="file" id="test" name="test" accept=".pdf,.doc"/>

扩展名应以点“.”开头.并用逗号分隔“,”

原文链接:https://www.f2er.com/html/225434.html

猜你在找的HTML相关文章