2

Ich bin mit jQuery-Datei-Upload-Plugin pro blueimp und IE9 ist die Auswahl mehrerer Dateien pro folgendem Code (siehe unten) oder die Demo nicht erlaubt:jquery-Datei-Upload (blueimp) - IE9 unterstützt nicht mehrere Dateiauswahl?

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

Kann jemand bietet eine Abhilfe oder Einsicht?

Ausblick:

<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"/> 

Controller:

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(); 
    } 
} 
+0

Ich nehme an, dies ist ein permanentes Problem für alle Versionen von IE: https://github.com/blueimp/jQuery-File-Upload/issues/1173 – JaJ

Antwort

0

Für Internet Explorer, benötigen Sie einen Flash-Fallback, Plupload dies tut.