5
我只需要接受使用輸入類型文件的pdf和doc文件。如何製作只接受pdf和doc的文件字段
<input type="file" id="test" name="test" accept="application/msword,text/plain, application/pdf"/>
這是工作在Windows,但在ubunthu,它只能接受PDF文件
我只需要接受使用輸入類型文件的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"/>
的擴展應該用點開始"."
和用逗號隔開","
試試這個http ://stackoverflow.com/questions/17992586/allow-only-pdf-doc-docx-format-for-file-upload –