本文介绍了如何使用Javascript从fileupload获取完整路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要知道如何使用javascript获取fileupload的完整路径,
我试过使用下面的代码但是没有用到
< input type =fileid =picFieldonchange =preview(this)>
< script type =text / javascript>
函数预览(测试){
var source = test.value;
alert(source);
}
< / script>
但是在提示信息中,我只得到了
Filename.extension
路径,但它显示文件上传框中的完整路径请帮助如何解决这个问题
感谢
解决方案
这是一个浏览器安全限制,在现代浏览器中,您无法获得所选文件的完整客户端文件系统路径,也无法以编程方式设置路径...
I need to know how to get full path from fileupload using javascript,
I tried using the following coding but of no use
<input type="file" id="picField" onchange="preview(this)">
<script type="text/javascript">
function preview(test){
var source=test.value;
alert(source);
}
</script>
but in the alert message, i am getting only
Filename.extension
I am not getting full path, but it is showing full path in File Upload box please help how to solve this problem
Thanks
解决方案
This is a browser security restriction, in modern browsers you cannot get the full client file-system path of the selected file, nor set a path programmatically...
这篇关于如何使用Javascript从fileupload获取完整路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!