Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I'm using Uplodify v3 and I want to add a hidden input with the uploaded file's name in it's value.
How can I do that?!
尝试
'onUploadSuccess' : function(file, data, response) { $('input#yourhiddeninputid').val(file.name); }
我试过工作。