'Destination DIV' disappearing in simple jQuery AJAX call

前端 未结 5 424
说谎
说谎 2021-01-24 21:35

Edit: Important: It is extremely unlikely that anybody who has come across this will have the exact same problem as me - check my answer below for my very obscu

5条回答
  •  一整个雨季
    2021-01-24 22:33

    try

    $.get("/woops/store/cartsummary", {}, function(data) {
        $("#cart").html(data); 
    });
    

    (jQuery docs)

提交回复
热议问题