// ========================================================== // 開啟商品購買跳窗 // ========================================================== ;(function($) { $('body').on('click', '.open-amount', function(e) { $(this).parents('.productBox').find('.amount-warpper').addClass('in-active') }) $('body').on('click', '.amount-warpper', function(e) { if(e.target === e.currentTarget || e.target === $(this).find('.closer')[0] || $(e.target).hasClass('btn')) { $(this).removeClass('in-active') } }) })($)