ajax 数据未定义,响应返回页面的 html

问题描述 投票:0回答:2
javascript php ajax
2个回答
0
投票

使用两个嵌套表格的原因是什么?这不是使用表格的正确方法


0
投票

在您的 ajax 中添加内容类型并接受。

           $.ajax({
              type: 'POST',
              url: 'ajaxRepair.php', 
              contentType : application/json // will define content is JSON
              accept: application/json // always accept only JSON content.
              data: { SK: SK }, 
              success: function(response){
            console.log(response);
              }
           });
© www.soinside.com 2019 - 2024. All rights reserved.