如何将输入字段中的值与我上传到服务器的文件 上传 一起发布?
<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>
这还不行,但我该怎么做?
答案 0 :(得分:1)
尝试:
$(document).ready(function() {
$('#fileInput').uploadify({
'uploader' : 'uploadify.swf',
'script' : 'upload.php',
'cancelImg' : 'cancel.png',
'auto' : true,
'folder' : '/your_folder_to_upload',
'onOpen' : function(){
$('#file_upload').uploadifySettings(
'scriptData',
{'userInput':$("#userInput").val()}
);
}
});
});
希望有所帮助