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请问怎样才能得到正确的文件绝对路径呢?? 展开
 我来答
Volvo_s80
推荐于2016-09-20 · TA获得超过2519个赞
知道小有建树答主
回答量:492
采纳率:50%
帮助的人:355万
展开全部
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; }}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式