總得有點(diǎn)應(yīng)急措施
$("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小數(shù)計(jì)算
(Number(amount) * Number(price)).toFixed(2);