js获取fileinput中得路径

var url; 
if (navigator.userAgent.indexOf("MSIE")>=1) { // IE 
    url = document.getElementById("img_input").value; 
} else if(navigator.userAgent.indexOf("Firefox")>0) { // Firefox 
    url = window.URL.createObjectURL(document.getElementById("img_input").files.item(0)); 
} else if(navigator.userAgent.indexOf("Chrome")>0) { // Chrome 
    url = window.URL.createObjectURL(document.getElementById("img_input").files.item(0)); 
}

你可能感兴趣的:(js获取fileinput中得路径)