本文轉載於:猿2048網站H5 調用手機攝像機、相冊功能php
<input type="file" accept="image/*" capture="camera">ide
<input type="file" accept="video/*" capture="camcorder">網站
<input type="file" accept="audio/*" capture="microphone">spa
accept表示打開的系統文件目錄;blog
capture表示的是系統所捕獲的默認設備,camera:照相機;camcorder:攝像機;microphone:錄音;ip
還有一個屬性multiple,支持多選,當支持多選時,multiple優先級高於capture,因此只用寫成:<input type="file" accept="image/*" multiple>就能夠。get