jQuery的ajax发送FormData的方式

时间:2022-02-12 09:01:53
【文件属性】:

文件名称:jQuery的ajax发送FormData的方式

文件大小:893B

文件格式:HTML

更新时间:2022-02-12 09:01:53

ajax FormData

<html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form id="form"> <input type="text" name="username"> <input type="file" name="file"> <input type="button" id="btn" value="提交"> </form> [removed][removed] [removed] var form = $('#form')[0]; // 获取到表单的DOM对象形式 $('#btn').on('click', function () { // 1 使用FormData进行表单的数据处理 var fd = new FormData(form); // 2 使用$.ajax发送fd // 需要指定两个属性 // - processData : false // - contentType : false $.ajax({ method : 'POST', url : '/ajax_Day5/datas03.php', data : fd, success : function (data) { console.log(data); }, processData : false, contentType : false }); }); [removed] </body> </html>


网友评论

  • 骗子[face]emoji:020.png[/face]