代码很简单,就是动态生成input标签,来实现change事件无法处理相同文件。在chrome,firefox中都有效,但在ie浏览器中无法触发打印3.求助!!!var button=document.getElementsByClassName('button')[0];var imgBox=document.getElementsByClassName('imgBox')[0];button.onclick=function(){ inputImg();}function inputImg(){ var input=document.createElement('input'); input.type='file'; input.addEventListener('change',function(e){ console.log(3); }); input.click();}
添加回答
举报
0/150
提交
取消