1. 程式人生 > >H5呼叫手機攝像頭,圖片,視訊等

H5呼叫手機攝像頭,圖片,視訊等

限制只能選擇圖片

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


限制只能選擇視訊

<input type="file" accept="video/*">

限制只能選擇音訊

<input type="file" accept="audio/*">

直接開啟攝像頭拍照

<input type="file" accept="image/*" capture="camera">


直接開啟攝像頭錄影

<input type="file" accept="video/*" capture="camera">