H5 file呼叫手機相機和相簿(相容安卓ios,親測有效)

aTong,發表於2019-01-03

<input id=”input” type=”file”/>標籤,iOS直接吊起相機拍照或是相簿選擇,但Android中只調起選擇相簿,沒有調起相機拍照

解決辦法:

只需要加上 accept=”image/*” 就完美的相容安卓和IOS了(accept表示開啟的系統檔案目錄)

<input type="file" accept="image/*" multiple>

multiple 是多選,當支援多選時,multiple優先順序高於capture

相關文章