jQuery : File Input Value needed?
How could we get the file input开发者_如何转开发 full path using jquery ?
jQuery("input[type=file]").val(); just for the filename not the entire path.
You can't. Only filename can be read, not fullpath. This restriction is because of security.
精彩评论