如何制作一个只接受pdf和doc的文件字段
How to make a file field that only accept pdf and 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"/>
扩展名应以 点 "."
开头,并以 逗号 ","
[=13 分隔=]
您可以尝试 accept 属性来执行此任务。
例子:-
<input type="file" id="example" name="test" accept=".pdf,.docx"/>
就这么简单。
我只需要接受使用输入类型文件的 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"/>
扩展名应以 点 "."
开头,并以 逗号 ","
[=13 分隔=]
您可以尝试 accept 属性来执行此任务。
例子:-
<input type="file" id="example" name="test" accept=".pdf,.docx"/>
就这么简单。