从输入字段发送信息以及uploadify

时间:2012-04-25 11:36:53

标签: php jquery html file-upload 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>

这还不行,但我该怎么做?

1 个答案:

答案 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()}
            );
        }
    });
});

希望有所帮助