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>
これはまだ機能しませんが、どうすればこれを行うことができますか?