限制只能选择图片
<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">