我有一个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);
}});
}
答案 0 :(得分:0)
就我而言,我再次在嵌套视图或html中加载了jquery。我删除了该引用并开始工作。