가전제품 인터넷 최저가 상품을 의심해야하는 이유
let lock_recomment = false; function recommendArticle() { if (lock_recomment) { return; } lock_recomment = true; jQuery.ajax({ type: "post", url: "./recommend.ajax.php", catche:false, data: {bo_table:"free", wr_id:"10601560"}, dataType : "json", success: function(res) { lock_recomment = false; alert(res.msg); switch (res.code) { case "success" : $('#recommendButtonNew span').html( parseInt($('#recommendButtonNew span').html()) + 1 ); $('.artc_info .count_reply span').html( parseInt($('.artc_info .count_reply span').html()) + 1 ); break; default : return false; break; } }, error: function(res) { lock_recomment = false; } }); }
댓글 0