2

blueimpごとにjqueryファイルアップロードプラグインを使用していますが、IE9では次のコード(以下)またはデモごとに複数のファイルを選択できません。

http://blueimp.github.com/jQuery-File-Upload/

誰かが回避策や洞察を提供できますか?

意見:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="@Url.Content("~/Scripts/jquery.ui.widget.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.iframe-transport.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.fileupload.js")" type="text/javascript"></script>

<input id="fileupload" type="file" name="files" multiple="multiple"/>

コントローラ:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    [HttpPost]
    public ActionResult Index(IEnumerable<HttpPostedFileBase> files)
    {
        foreach (var file in files)
        {
            var filename = Path.Combine(Server.MapPath("~/App_Data"), file.FileName);
            file.SaveAs(filename);
        }
        return View();
    }
}
4

1 に答える 1

0

For Internet Explorer, you need a flash fallback, plupload does this.

于 2012-04-20T21:40:24.820 に答える