input type="file" 用js取的它的value值为啥为c:\fakepath...?怎么取得正确的选取的文件路径值?
<formname="form1"action=""method="post"enctype="multipart/form-data"><inputtype="file...
<form name="form1" action="" method="post" enctype=" multipart/form-data"><input type="file" id="fileSel" name="fileSel" /><input type="button" name="btnRead" value="读取" onclick="read();"/><input type="button" name="btnInsert" value="导入DB" onclick="insert();"/></form>在浏览按钮按下后选择了一个文件,前面的文本框也显示正确(d:\test.xls),但是js中取得的value却不对,为吃c:\fakepath\test.xls请问怎样才能得到正确的文件绝对路径呢??
展开
1个回答
展开全部
js给action传真实地址的时候,处于安全,传到action中浏览器会改变路径变为C:\fakepath\ftp.txt,但是原始路径却是
C:\Documents and Settings\Administrator\桌面\ftp.txt
下面就是获得原始路径的方法
var url = getPath(document.getElementByIdx_x("url"))
function getPath(obj) { if (obj) { if
(window.navigator.userAgent.indexOf("MSIE") >= 1)
{ obj.select(); return
document.selection.createRange().text; } else if
(window.navigator.userAgent.indexOf("Firefox") >= 1)
{ if (obj.files) { return
obj.files.item(0).getAsDataURL(); } return
obj.value; } return obj.value; }}
C:\Documents and Settings\Administrator\桌面\ftp.txt
下面就是获得原始路径的方法
var url = getPath(document.getElementByIdx_x("url"))
function getPath(obj) { if (obj) { if
(window.navigator.userAgent.indexOf("MSIE") >= 1)
{ obj.select(); return
document.selection.createRange().text; } else if
(window.navigator.userAgent.indexOf("Firefox") >= 1)
{ if (obj.files) { return
obj.files.item(0).getAsDataURL(); } return
obj.value; } return obj.value; }}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询