0

我正在尝试提交输入字段并使用 ajax 请求上传文件。每件事都运作良好。除了不发送隐藏的输入值 $(#job)。

            $.ajaxFileUpload({
                     url         :'careers-training/apply-job/',
                     secureuri      :false,
                     fileElementId  :'cv',
                     dataType    : 'script',
                     data  :{'job' : $('#job').val(),'name' : $('#name').val(),'email' : $('#email').val(),'mobile' : $('#mobile').val(),'cv' : $('#cv').val()},
                     success  : function (Response, status)
                     {

                        var jsonObject = $.parseJSON(Response);
                        if(jsonObject.length == 0)
                        {
                            $(this).HideLoadingPanel();
                            $(this).ShowSuccessPanel();
                            $("#job-application-box").hide();
                            $("#body").attr('style','min-height:400px;')

                        }else{

                            $(this).HideLoadingPanel();
                            $(this).ShowErrorsBox(jsonObject);

                        }

                     }
                  });

这是HTML:

            <form name="apply-job-form" method="post" enctype="multipart/form-data">
                <input name="job" id="job" type="hidden" value="dd" />
                <label class="form-label">Name: </label>
                <input class="form-input" type="text" id="name" name="name" /><br />
                <label class="form-label">Mobile: </label>
                <input class="form-input" type="text" id="mobile" name="mobile" /><br />
                <label class="form-label">Email: </label>
                <input class="form-input" type="text" id="email" name="email" /><br />
                <label class="form-label">CV: </label>
                <input class="file-input" type="file" id="cv" name="cv" />
                <button type="button" id="apply-job-button" name="apply-job-button" class="form-button">Apply now !</button>
            </form>

那么你能帮帮我吗?

4

1 回答 1

0

我已经解决了这个问题。它与选择器有关,所以我要更改它们。谢谢大家

于 2012-10-03T16:18:46.167 回答