0

我使用 Jform.js 插件通过 jquery 提交我的文件及其在 Firefox 中的工作,但是当我在 IE8 文件上尝试正确提交但文件上传控件被隐藏时,当我评论 IE 条件时文件上传控件不会隐藏但当我在控制器中检查 Request.Files[0].ContentLength 时,它的值为 0。这是我的代码,我可能做错了什么?我正在使用 Asp.net MVC 和 jquery-1.4.2

        var myform = document.createElement("form");    
        myform.style.display = "none"
        myform.action = "/Media/AjaxSubmit";
        myform.enctype = "multipart/form-data";
        myform.method = "post";
        var imageLoad;
        var imageLoadParent;
        if (document.all) {//IE
            imageLoad = document.getElementById(fileId);
            imageLoadParent = document.getElementById(fileId).parentNode;
            myform.appendChild(imageLoad);
            document.body.appendChild(myform);
        }
        else {//FF          
                imageLoad = document.getElementById(fileId).cloneNode(true);
                myform.appendChild(imageLoad);
                document.body.appendChild(myform);          
        }    
        $(myform).ajaxSubmit({ success: function (responseText) {    
});
4

2 回答 2

2

之前的谵妄是什么.ajaxSubmit?它看起来像 90 年代末的代码。我建议您简单地使用 jQuery 而不必担心跨浏览器问题:

$('form')
    .attr('action', '/Media/AjaxSubmit')
    .attr('method', 'post')
    .attr('enctype', 'multipart/form-data')
    .hide()
    .append($('#' + fileId).clone())
    .ajaxSubmit({
        success: function(responseText) {
            // ...
        }
    })
    .appendTo('body');

备注:硬编码的表单动作看起来很难看。您应该考虑使用 HTML 助手来生成 url。

于 2010-09-28T18:34:33.333 回答
0

Solution is simple i just add that browse control when it response back from ajaxsubmit function and code is as follows

            $(myform).ajaxSubmit({ success: function (responseText) {
            if (document.all) {//IE
                imageLoadParent.appendChild(myform.firstChild);
            }
            else//FF                     
            {
                document.body.removeChild(myform);
            }
于 2010-10-02T13:09:35.573 回答