如何删除项目实现筹码

时间:2019-08-15 17:40:16

标签: jquery materialize

我要在删除其中一项或删除之前要求我确认

$('.chips.the-best').chips({
    onChipDelete:function(){
     cosnole.log('deleted item')   
   }
});

1 个答案:

答案 0 :(得分:0)

文件:materialize.js第8150行

$(document).ready(function () {
    // Handle removal of static chips.
    $(document.body).on('click', '.chip .close', function () {  
      var $chips = $(this).closest('.chips');
      if ($chips.length && $chips[0].M_Chips) {
        return;
      }
      $(this).closest('.chip').remove();

    });
  });