|

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:"humor", wr_id:"82392"},
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;
}
});
}
눈꽃월드B
2012.06.06 11:23:04
ㅎㅎ볼룜
무법천지
2012.06.06 11:36:08
와 역시 면원피스가 섹시행..
김구덱이
2012.06.06 22:47:59
오 굿!!!!!!!!! 뽕부라 작렬
|