前端之家收集整理的这篇文章主要介绍了
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