invalid_product.js 350 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 define(function(require, exports, module){ $(function(){ $('.rt-bar').on('click', function(e){ var clear = confirm('确定要清空失效商品吗?'); if(clear){ $('.m-table-view').empty(); $(this).hide(); } e.preventDefault(); }); }); });