var formData = new FormData(document.getElementById("addform"));
                $.ajax({
                    url: "url",
                    type: "post",
                    data: formData,
                    processData: false,
                    contentType: false,
                    success: function (data) {
                     
                    },
                    error: function (e) {
                     
                    }
                });

 

相关文章:

  • 2021-09-10
  • 2022-02-10
  • 2022-12-23
  • 2021-06-20
  • 2021-09-14
  • 2021-10-11
  • 2022-12-23
猜你喜欢
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-21
  • 2021-08-20
相关资源
相似解决方案