首页 > 代码库 > input类型为file时,chrome,FF和IE8的fakepath问题处理方法
input类型为file时,chrome,FF和IE8的fakepath问题处理方法
1 function getPath(obj,fileQuery,transImg) 2 { 3 if(window.navigator.userAgent.indexOf("MSIE")>=1){ 4 obj.select(); 5 var path=document.selection.createRange().text; 6 obj.removeAttribute("src"); 7 obj.setAttribute("src",transImg); 8 obj.style.filter= "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=http://www.mamicode.com/‘"+path+"‘, sizingMethod=‘scale‘);"; 9 } 10 else{ 11 var file =fileQuery.files[0]; 12 var reader = new FileReader(); 13 reader.onload = function(e){ 14 obj.setAttribute("src",e.target.result) 15 } 16 reader.readAsDataURL(file); 17 } 18 }
1 var file_img=document.getElementById("up_user_img"); 2 var transImg;3 getPath(file_img,this,transImg);
上述方法为一个完全兼容的版本
转载于:http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=3624132
input类型为file时,chrome,FF和IE8的fakepath问题处理方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。