最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError: $.ajax is not a function how to solve WITH MY CODE)? - Stack Overflow

programmeradmin3浏览0评论

When i click on the button, this error is blow up! help pls When i click on the button, this error is blow up! help pls

TypeError: $.ajax is not a function

$(document).on('click', '.item_add', function(e){
        e.preventDefault();
        product_id          = $(".product_id").html();
        product_name        = $(".product_name").html();
        product_price       = parseFloat($(".item_price").html())   
        product_size        = $(".bann-size").val();
        url                 = '/basket_adding/'
        var data            = {};
        data.product_id     = product_id
        data.product_name   = product_name
        data.product_price  = product_price
        data.product_size   = product_size

        $.ajax({
            url: url,
            type: 'POST',
            data: data,
            cache: true,
            success: function(data){
                console.log("OK");


            },
            error: function(data){
                console.log(data + "ERROR")
                alert("Something wrong, try again!")
                location.reload();
            }
        });
    });

When i click on the button, this error is blow up! help pls When i click on the button, this error is blow up! help pls

TypeError: $.ajax is not a function

$(document).on('click', '.item_add', function(e){
        e.preventDefault();
        product_id          = $(".product_id").html();
        product_name        = $(".product_name").html();
        product_price       = parseFloat($(".item_price").html())   
        product_size        = $(".bann-size").val();
        url                 = '/basket_adding/'
        var data            = {};
        data.product_id     = product_id
        data.product_name   = product_name
        data.product_price  = product_price
        data.product_size   = product_size

        $.ajax({
            url: url,
            type: 'POST',
            data: data,
            cache: true,
            success: function(data){
                console.log("OK");


            },
            error: function(data){
                console.log(data + "ERROR")
                alert("Something wrong, try again!")
                location.reload();
            }
        });
    });
Share Improve this question asked Sep 20, 2017 at 10:04 InvictusManeoBartInvictusManeoBart 3833 gold badges10 silver badges27 bronze badges 4
  • 1 well, does your page import jquery before YOUR CODE? – Federico klez Culloca Commented Sep 20, 2017 at 10:05
  • simple: load jquery – Jaromanda X Commented Sep 20, 2017 at 10:05
  • how to load jquery? if in base template, yes it is! – InvictusManeoBart Commented Sep 20, 2017 at 10:06
  • 3 jQuery is probably loaded since the error is thrown only on $.ajax and jQuery is called before. It may be overridden by something else, or OP has a custom jQuery version. – Serge K. Commented Sep 20, 2017 at 10:15
Add a ment  | 

2 Answers 2

Reset to default 12

It sounds like you could be using jquery slim which doesn't have ajax support. Use:

<script src="https://code.jquery./jquery-3.2.1.min.js"></script>

for ajax support

I have occurred same problem, but I fixed this problem by following link. If you have linked jquery.js or jquery-min.js then go to its code and search ajax( If this code is not found in your code then use this link instead of your jquery link.

<script src="https://code.jquery./jquery-3.2.1.min.js"></script>

Another problem can occur if you are using jquery-slim-min.js

发布评论

评论列表(0)

  1. 暂无评论