h5 input type=file 设置

input type=file 设置accept属性可以限定上传的文件

比如我需要上传图片 accept="image/*"

因为input的css样式肯定是不符合开发中需要的  修改样式又比较麻烦  会需要把输入框隐藏 然后点击别的按钮触发input的事件

我这里需要点击加号按钮 然后触发input事件 然后上传图片 

实现  按钮绑定点击事件cardClick  sel为input  id   

cardClick(sel){
                 document.getElementById(sel).click();
              
            },

猜你喜欢

转载自blog.csdn.net/a1044187112/article/details/82716029