javascript – 在jQuery中使用’this’变量fadeIn?

我正在尝试使用ajax创建一个按钮,它将喜欢该线程.但它必须只在淡出的线程上淡出和淡出受欢迎的图像.

我收到以下错误
未捕获的SyntaxError:意外的令牌

那是我的代码第11行:
$(这’.is_favorited’).fadeIn(“慢”);

这是完整的Javascript代码

$(".do_favorite").live("click",function() {
    var item = $(this).closest(".Box");
    var content = $(this).attr('data-id');
    alert(content);
    $.post( 'ajax.favorite.PHP?sid=' + content + '',$(this).serialize(),function(data) {
            if (data == "1") {
                // Favorite it
                $(this + ' .not_favorited').fadeOut("slow",function (
                    $(this + ' .is_favorited').fadeIn("slow");
                ));
            }else if (data == "2") {
                // Un-Favorite it
                $(this + ' .is_favorited').fadeOut("slow",function (
                    $(this + ' .not_favorited').fadeIn("slow");
                ));
            }else {
                alert("DER SKETE EN FEJL DU");
            }
        }
    );
    return false;
});

希望有人可以帮我解决这个问题,因为我真的需要使用它,使它只消失被点击的一个.

解决方法

像这样保存你的“这个”

$(".do_favorite").live("click",function() {
        var me = $(this);
        var item = me.closest(".Box");
        var content = me.attr('data-id');
        alert(content);
        $.post( 'ajax.favorite.PHP?sid=' + content + '',me.serialize(),function(data) {
            if (data == "1") {
            // Favorite it
            me.find(' .not_favorited').fadeOut("slow",function (
                me.find('.is_favorited').fadeIn("slow");
            ));
            }else if (data == "2") {
            // Un-Favorite it
            me.find('.is_favorited').fadeOut("slow",function (
                me.find('.not_favorited').fadeIn("slow");
            ));
            }else {
            alert("DER SKETE EN FEJL DU");
            }
        }
        );
        return false;
    });

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...