刘刚博客

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

限制只能选择图片

 

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

 

 

posted @ 2018-08-28 16:27  Future.Net博客  阅读(1805)  评论(0编辑  收藏  举报