DestinyHunter / DestinyHunter.github.io

Blog
https://DestinyHunter.cn
1 stars 0 forks source link

安卓版微信 input onchange事件不生效 #18

Open DestinyHunter opened 5 years ago

DestinyHunter commented 5 years ago
图片上传控件,遇到无法上传的问题,表现为选择图片后无法触发change事,问题原因最终锁定在input accept上。
<input type="file" accept="image/gif, image/jpeg"  onchange="fileChange">
上面的定义,在某些安卓版微信上不会触发change事件,需要改成下面形式
<input type="file" accept="image/*"  onchange="fileChange">