web-dev-qa-db-ja.com

PDFとドキュメントのみを受け入れるファイルフィールドを作成する方法

入力タイプファイルを使用して、pdfファイルとdocファイルのみを受け入れる必要があります。

<input type="file" id="test" name="test" accept="application/msword,text/plain, application/pdf"/>

これはWindowsで機能しますが、ubunthuではpdfファイルのみを受け入れます

8
Vineetha K D

コードを次のように変更します。

<input type="file" id="test" name="test" accept=".pdf,.doc"/>

拡張機能はdot"."で始まり、comma","で区切る必要があります。

20
Ahs N

このタスクを実行するには、accept属性を試すことができます。例:-<input type="file" id="example" name="test" accept=".pdf,.docx"/>それと同じくらい簡単です。

0
Himanshu Soni