Authored by 王水玲

星潮教室

... ... @@ -48,25 +48,22 @@ function scrollHandler() {
}
// 分享成功
function successShare() {
$.ajax({
type: 'POST',
url: '',
data: {
articleId: $that.parents('li').attr('articleId')
},
success: function(data) {
var code = data.code;
if (code === 200) {
tip.show('分享成功,亲密度+10');
}
},
error: function() {
tip.show('网络断开连接了~');
}
});
}
// function successShare() {
// $.ajax({
// type: 'POST',
// url: '',
// success: function(data) {
// var code = data.code;
// if (code === 200) {
// tip.show('分享成功,亲密度+10');
// }
// },
// error: function() {
// tip.show('网络断开连接了~');
// }
// });
// }
$(window).scroll(function() {
scrollHandler();
... ...