我也遇到这个问题了,请问解决了吗?
input="file" 在安卓微信浏览器里,不触发onchange事件[图片] [图片] [图片] [图片] <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <input class="u-upload" type="file" accept="image/*" multiple onchange="changeFn()" /> </body> <script> function changeFn() { alert(1) var files = document.getElementsByName('u-upload').files; console.log(files) } </script> </html> 微信版本:8.0.35,安卓 荣耀30 multiple多选的情况会出现onchange回调不触发的情况,单选正常
2023-06-01我也遇到这个问题了,请问解决了吗?
webview中input type="file"安卓手机相册选择图片不触发onchange?求解决[图片]相册内进入选择图片,不触发onchange事件,小米11,华为mate50,华为nova8 pro 都试了不行,在浏览器中可以触发onchagne事件。最近图片或者进入文件管理里面选择图片可以触发onchange的。 链接:https://dev.xinhulu.com/komaTest/arthuraaa.html 代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script> </head> <body> <div class="btn">btttnnn</div> <script> var vConsole = new window.VConsole(); const btn = document.querySelector('.btn') btn.addEventListener('click',(e) => { var fileInput = document.createElement('input') fileInput.type = 'file' fileInput.style.display = 'none' fileInput.addEventListener('change', function () { console.log(this.files,'files') }, false) fileInput.setAttribute('multiple', 'multiple') document.body.appendChild(fileInput) fileInput.click() }) </script> </body> </html> 如果触发onchange事件,vconsole控制台会有打印的。
2023-06-01我也遇到这个问题了,请问解决了吗?
手机微信浏览器 input type=‘file’ 无法获取图库相片?华为畅享20 Pro <input type="file" class='file' ref='file' @change='filesChange' accept="image/*" multiple :disabled="uploading"/> 进入相册后,再进入图库选择后点击完成却无反应
2023-06-01