0

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?!

4

1 回答 1

0

尝试

'onUploadSuccess'   : function(file, data, response) {
    $('input#yourhiddeninputid').val(file.name);
}

我试过工作。

于 2014-01-09T16:27:45.180 回答