ios Xs Max 微信内部浏览器上传文件无法触发change、input、propertychange事件
代码片段如下:
<input type=“file” name=“file” accept=“image/*” id=“file” capture=“camcorder”>
<script>
document.querySelector(’#file’).addEventListener(‘change’, function() {
alert(“可以触发1”)
}
$(‘input[name=“file”]’).bind(‘input propertychange’, function() {
alert(“可以触发2”);
});
</script>
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)