ios Xs Max微信浏览器上传无法触发change、input、propertychange?

发布于 8 年前作者 caiguiying3217 次浏览最后编辑 8 年前来自 issues

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>

1 回复
xia62
xia621 楼6 年前

麻烦提供能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html