1const saveReport = function () {
2 /* jQuery.form表单提交数据 */
3 $("#addImg").ajaxSubmit({
4 type: "post",
5 url: "上传接口api",
6 data: {
7 picType: "jpg" // 图片格式
8 },
9 dataType: "json",
10 success: function (res) {
11 if (res.code == 1) {
12 /* 生成的图片ID */
13 avatars = res.imgGid;
14 /* 拼接回显图片 */
15 $("#upJPG").prepend('<img src="' + res.imgGid + '" class="imgStyle" />');
16 /* 删除图片 */
17 $(".close").on("click", function (e) {
18 /* 阻止图片跳转 */
19 e.stopPropagation();
20 /* 对dom的操作 */
21 });
22 }
23 },
24 error: function (err) {
25 hintCard("网络错误");
26 }
27 });
28 /* 防止表单自己再次提交,并跳转页面 */
29 return false;
30};