如何在Ajax成功函数中添加消息

时间:2015-07-27 09:21:00

标签: ajax cart

这是我的HTML

<div class="top-item-grid-body" id="item-grid-${entry.entryNumber}"></div>

这是我的Ajax

$.ajax({
              type:'GET',
              data:"",
              url: 'cart/delete?cartEntryNumber='+entryNbr,
              success: function(){
                  $("#item-grid-"+entryNbr).remove();



              }
        })

我必须显示一条消息,说明&#34;您的购物车是空的&#34;什么时候删除所有项目..如何在Ajax成功函数中执行此操作?

1 个答案:

答案 0 :(得分:0)

这是你在找什么?

  $.ajax({
          type:'GET',
          data:"",
          url: 'cart/delete?cartEntryNumber='+entryNbr,
          success: function(){
              $("#item-grid-"+entryNbr).remove();

              alert("Your cart is empty");
          }
    })