手机端file限制只能选择图片、视频、音频,直接打开摄像头拍照或录像
发布时间:2020-05-09 10:28:55 查看:4458
限制只能选择图片
<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">