入力タイプファイルを使用して、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"/>
拡張機能はdot"."
で始まり、comma","
で区切る必要があります。
このタスクを実行するには、accept属性を試すことができます。例:-<input type="file" id="example" name="test" accept=".pdf,.docx"/>
それと同じくらい簡単です。