问题
Note:
The answers & comments below reflect the state of legacy browsers in 2009. Now you can actually set the value of the file input element dynamically/programatically using JavaScript in 2017.
See the answer in this question for details as well as a demo:
How to set file input value programatically (i.e.: when drag-dropping files)?
How can I setup an <input>
tag where when the user submits the form, it will still show the previously selected file?
I've tried the following:
<input type="file" name="upfile" value="<?=isset($_POST['upfile'])?$_POST['upfile']:''?>"/>
but it doesn't seem to work!
回答1:
With input type file it isn't possible to set up a default value. You have to use some plugins e.g. http://blueimp.github.io/jQuery-File-Upload/
Read following article How to set a value to a file input in HTML?
回答2:
That's impossible to set a selected file by default. It against the security policy. If you want to keep previously selected file, you should not reload the page. Submit your form using ajax and you will keep your file selected so you can submit it again or do whatever you want
来源:https://stackoverflow.com/questions/25923141/how-can-i-have-a-preselected-input-for-when-type-file