我要在删除其中一项或删除之前要求我确认
$('.chips.the-best').chips({
onChipDelete:function(){
cosnole.log('deleted item')
}
});
答案 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();
});
});