码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2020-02-27 19:13:25      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:执行   属性   name   nbsp   ons   user   div   ips   const   

<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调用相机和相册

标签:执行   属性   name   nbsp   ons   user   div   ips   const   

原文地址:https://www.cnblogs.com/edczjw-Edison/p/12373507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!