本文介绍了input type =" file"在IE中抓取整个文件路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有一个输入类型=" file"我用来接受文件上传的字段。 这样可行,但我遇到了文件名属性的问题。 在firefox中,这个: MyInputField.postedfile.filename 返回文件名...只是文件名。这就是我想要的。 然而,在IE中,这会返回ENTIRE本地用户的文件路径到文件 +文件名。哪个,对大多数应用来说都没用。 (实际上, 看起来像是一个安全问题。) 解析整个文件路径的解决方法是否有解决方法 $ b反斜杠的$ b?我当然可以这样做,但也许有更好的方法来获得最终用户使用IE时的文件名。 -DarrelI have an input type="file" field that I am using to accept a file upload.This works, but I''m having problems with the filename property.In firefox, this:MyInputField.postedfile.filenamereturns the filename...and just the filename. Which is what I want.In IE, however, this returns the ENTIRE local user''s system path to the file+ the filename. Which, is pretty useless for most applications. (Actually,it seems like a security issue.)Is there a workaround for this short of parsing the entire filepath lookingfor backslashes? I can certainly do that, but maybe there is a better way tograb just the filename when the end-user is using IE.-Darrel推荐答案 这篇关于input type =" file"在IE中抓取整个文件路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-21 02:32