我可以使用以下代码上传文件:
$(document).ready(function(){
$('#add-new-document').fileupload({
url: '/add.php?id='+$('#add-new-doc').data('id')+'&type='+$('#new-doc-type option:selected').val(),
dataType: 'json',
autoUpload: true,
...
但如果我在#new-document-type
上选择不同的内容或更改#add-new-document
中数据ID的值并点击#add-new-document
,则输入的值不是更新后的值。
如何从更新的DOM中输入值?