首页 > 技术文章 > 手机端file限制只能选择图片、视频、音频,直接打开摄像头拍照或录像

future 2018-08-28 16:27 原文

限制只能选择图片

 

<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">

 

 

推荐阅读