$.post(
"/post/vote",
{
id: $(this).parents('.news_com_right').attr('data-attr'),
value: $(this).attr('data-attr')
},
function(respond) {
// Вот сюда надо передать объект this из начала функции. как это сделать?
if (respond['error'] == '0') {
} else if (respond['error'] == '1') {
}
}
);
var self = this;
$.post(
"/post/vote",
{
id: $(this).parents('.news_com_right').attr('data-attr'),
value: $(this).attr('data-attr')
},
function(respond) {
console.log(self);
}
);