H5-安卓和ios调用相机和相册

<input v-if="ipshow" type="file" accept="image/*" name="file1" capture="camera" @change="upload">
<input v-else type="file" accept="image/*" name="file1" @change="upload">
data() {
        return{
                 ipshow:false,//切换input属性
              }
       },
//判断是否ios,是则不执行,否则安卓执行
if (‘andriod‘ == this.appSource()) {
        this.ipshow = true;
 }else{
        this.ipshow = false;
 }
//判断ios和安卓
appSource() {
             const u = navigator.userAgent;
             const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
             if (isiOS) {
               return "ios";
             } else {
               return "andriod";
           }
},

 

H5-安卓和ios调用相机和相册

上一篇:vue 3.0 项目搭建移动端 (五) 没有配合webpack的情况下 引入 sass


下一篇:D. Happy New Year (状压DP + 扫描线)