手机浏览器上,上传按钮的几种变化
发布于 作者:苏南大叔 来源:程序如此灵动~ 我们相信:世界是美好的,你是我也是。平行空间的世界里面,不同版本的生活也在继续...
在移动互联网时代,传统的上传按钮,有了新的变化。点击后,可以调用相册,或者单独调用相机,或者录像等等。下面是几种变化,当然,并不是所有的手机浏览器都支持这几种属性,不过,这种情况在慢慢改善。相关文章:https://newsn.net/say/jquery_ajax_upload.html 。
<input type="file" accept="image/*" /> <!--正常单选-->
<input type="file" accept="image/*" capture="camera" /> <!--照相-->
<input type="file" accept="video/*" capture="camcorder" /><!--录像-->
<input type="file" accept="audio/*" capture="microphone" /><!--录音或照相-->
<input type="file" accept="image/*" multiple="multiple" /><!--多选-->
普通情况
<input type="file" accept="image/*" /> <!--正常单选-->
<input type="file" accept="image/*" multiple="multiple" /><!--多选-->
区别在于,图库是否可以多选。
只调用相片
<input type="file" accept="image/*" capture="camera" /> <!--照相-->
只调用录像
<input type="file" accept="video/*" capture="camcorder" /><!--录像-->
麦克风(录像或照片)
<input type="file" accept="audio/*" capture="microphone" /><!--录音或照相-->
如果本文对您有帮助,或者节约了您的时间,欢迎打赏瓶饮料,建立下友谊关系。
本博客不欢迎:各种镜像采集行为。请尊重原创文章内容,转载请保留作者链接。
本博客不欢迎:各种镜像采集行为。请尊重原创文章内容,转载请保留作者链接。