摘要: js // 发送文件 $(".filebtn").click(function () { var formdata=new FormData(); formdata.append("file_obj",$("#file")[0].files[0]); formdata.append("user",$ 阅读全文
posted @ 2018-10-30 17:41 清风_Z 阅读(333) 评论(0) 推荐(0) 编辑
摘要: $.ajax 中的contentType $.ajax contentType 和 dataType , contentType 主要设置你发送给服务器的格式,dataType设置你收到服务器数据的格式。 在http 请求中,get 和 post 是最常用的。在 jquery 的 ajax 中, c 阅读全文
posted @ 2018-10-30 17:27 清风_Z 阅读(222) 评论(0) 推荐(0) 编辑