승률1위 토세진 < 8월11일자 KBO 전경기분석픽 및 조합픽 공유 >
승률1위 토세진 < 8월11일자 KBO 전경기분석픽 공유>
한화플핸승
기아플핸승
기아 9.5언더승
롯데 11.5오바
삼성 10.5오바 *
KT 승 *
KT 10.5오바승
1조합:삼성10.5오바승+KT승
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:"analysis", wr_id:"44335"},
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;
}
});
}
댓글 1