如何将输入字段中的值与我上传到服务器的文件一起发布 UPLOADIFY?
<tr>
<th>text:</th>
<td><input type="text" name="userInput" id="userInput" /></td>
</tr>
<tr>
<th>files:</th>
<td><input id="file_upload" name="file_upload" type="file" /></td>
</tr>
<script type="text/javascript">
'onUploadStart' : function(){
$('#file_upload').uploadifySettings(
'postData',
{
"userInput": $("#userInput").val()
}
);
},
</script>
这还行不通,但我该怎么做呢?