Maison >interface Web >js tutoriel >JQuery AJAX peut-il gérer les téléchargements de fichiers via la méthode POST ?
Question :
Est-il possible d'utiliser ce qui suit Code jQuery pour effectuer le téléchargement de fichiers à l'aide de la méthode POST d'une requête AJAX ?
type: "POST", timeout: 50000, url: url, data: dataString, success: function (data) { alert('success'); return false; } });``` **Answer:** Previously, file upload was **not** possible through AJAX. However, with the introduction of XHR2, file upload through AJAX is supported using the FormData object. **Clarifications:** * Data part must be filled with an instance of FormData to include file data. * For older browsers without XHR2 support, file upload through AJAX is still not possible. **Support:** Starting from the following desktop browser versions, FormData is supported: * IE 10+ * Firefox 4.0+ * Chrome 7+ * Safari 5+ * Opera 12+
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!