How to restrict <input type=“file”> so that it can only select .pdf files?

前端 未结 3 608
自闭症患者
自闭症患者 2021-01-01 09:33

By default it can select all type of files,how to restrict it so that it can only select .pdf files?

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-01 10:02

    You can use the accept attribute on your form to suggest to the browser to restrict certain types. However, you'll want to re-validate in your server-side code to make sure. Never trust what the client sends you.

提交回复
热议问题