ios Xs Max微信浏览器上传无法触发change、input、propertychange?
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 回复