总得有点应急措施
$("body").on('mouseover','.img-item',function(){
$(this).addClass('img-item-active');
$(this).find('.img-del').show();
});
$("body").on('mouseout','.img-item',function(){
$(this).removeClass('img-item-active');
$(this).find('.img-del').hide();
});
js小数计算
(Number(amount) * Number(price)).toFixed(2);