javascript - Input File field to Input Text field - Stack Overflow

I don't even know if this is possible or not but is there a method you can take the value of the s

I don't even know if this is possible or not but is there a method you can take the value of the selected file in a input file field to a input text field?

Like this:

I don't even know if this is possible or not but is there a method you can take the value of the selected file in a input file field to a input text field?

Like this:

Share Improve this question asked Sep 13, 2010 at 20:10 MacMacMacMac 35.4k55 gold badges153 silver badges224 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Hook on the change event of the file field.

<form method="post" enctype="multipart/form-data">
    <input type="file" onchange="this.form.filename.value = this.value">
    <input type="text" name="filename">
</form>

Jsfiddle demo. Note that IE6/7 incorrectly gives the full path while other browsers correctly gives only the filename.

This should be possible by creating a new text input element and populating it with the .value property of the file input.

Note, however, that all modern browsers store only the file name in the value property for security reasons. You will not be able to get the full path of the selected file.

Sources: MSDN on IE8

You can't do it without first storing the file on your own server.

The file input control does not contain the file's data. Your browser provides it to you as a placeholder until you submit the file data via a POST form submission.

If you're after the file's path, you also cannot do that (in modern browsers, as Pekka says). The browser does not give that information to client-side scripts. It may provide the filename, however.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745203165a4616449.html

相关推荐

  • javascript - Input File field to Input Text field - Stack Overflow

    I don't even know if this is possible or not but is there a method you can take the value of the s

    7小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信