复制代码 代码如下: get file input full path <BR>function getFullPath(obj) <BR>{ <BR>if(obj) <BR>{ <BR>//ie <BR>if (window.navigator.userAgent.indexOf("MSIE")>=1) <BR>{ <BR>obj.select(); <BR>return document.selection.createRange().text; <BR>} <BR>//firefox <BR>else if(window.navigator.userAgent.indexOf("Firefox")>=1) <BR>{ <BR>if(obj.files) <BR>{ <BR>return obj.files.item(0).getAsDataURL(); <BR>} <BR>return obj.value; <BR>} <BR>return obj.value; <BR>} <BR>} <BR> 灏