更新时间:2017/12/22 下午5:12:09
更新说明:修改错误,之前把form标签id和enctype写到div上了
引入css
<link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/bootstrap-fileinput.css" rel="stylesheet">
引入js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | < script src = "js/bootstrap-fileinput.js" ></ script > < script type = "text/javascript" > $(function() { //比较简洁,细节可自行完善 $('#uploadSubmit').click(function() { var data = new FormData($('#uploadForm')[0]); $.ajax({ url: 'xxx/xxx', type: 'POST', data: data, async: false, cache: false, contentType: false, processData: false, success: function(data) { console.log(data); if (data.status) { console.log('upload success'); } else { console.log(data.message); } }, error: function(data) { console.log(data.status); } }); }); }) </ script > |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com