解决jquery中动态新增的元素节点无法触发事件问题的方法

总得有点应急措施

 $("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);

你可能感兴趣的:(解决jquery中动态新增的元素节点无法触发事件问题的方法)