手机上传

手机拍照和上传图片
<input type=”file”>的accept 属性

<!-- 选择照片 -->
<input type=file accept="image/*">
<!-- 选择视频 -->
<input type=file accept="video/*">

使用总结:

ios 有拍照、录像、选取本地图片功能
部分android只有选取本地图片功能
winphone不支持
input控件默认外观丑陋。

<audio src="http://www.example.com/song.ogg" controls="controls">
音频
</audio>

注意:音频的格式

原文地址:https://www.cnblogs.com/wang715100018066/p/6016874.html