' Uncaught TypeError:$ .ajax不是函数'第二次运行时被抛出

时间:2017-12-13 21:56:45

标签: javascript jquery ajax laravel

我有一个jquery函数,第一次完美运行但是当我第二次尝试运行它时会抛出这个错误 -

Uncaught TypeError: $.ajax is not a function

这是我的功能

function myfunction(month, records) {
      $.ajax({url: "/JustLarv/public/gMap/records/" + records, success: function(result){
        Cookies.set('month', month);
        $(".map").html(result);
      }});

      $.ajax({url: "/JustLarv/public/qlty_sor", success: function(res){
        Cookies.set('month', month);
        $(".qlty_sor_chart").html(res);
        // $(".qlty_chart").html(res);
      }});
}

1 个答案:

答案 0 :(得分:0)

就我而言,我再次在嵌套视图或html中加载了jquery。我删除了该引用并开始工作。