10

当试图访问 $container 的 '.box' 类时,在 ajax 调用中使用 (this) 不起作用。

$container.on(
        "click",
        ".box",
        function(event){
            var description;
            if($(this)[0].style.width == '70%'){
                $(this).find(".resultData").fadeOut('slow');
                $(this).css('width', '18%');
            }else{
                $.ajax({
                    url:'scripts/php/fetchResultsData.php',
                    data: {action:value},
                    type: 'post',
                    dataType: 'json',
                    success: function(data){
                        description = data[0];
                        $(this).css('width', '70%');
                        $(this).append("\
                            <div class='resultData'>\
                                <div class='resultName'>" + $(this).find("p").html() + "</div>\
                                <div class='resultDesc'>" + description +"</div>\
                            </div>");
                        /*alert($(this).find("p").html());*/
                    }
                    })
            }
            $container.masonry('reload');
        }
    );

如果不清楚我要做什么,我正在尝试更改动态元素的 css。但例如,

$(this).css('width','70%');

根本没有调整css。如果我将它移到 ajax,success 部分之外,它可以工作,但是我无法获得“描述”。

4

2 回答 2

18

你很近。在您使用它的上下文中,“this”指的是 ajax 请求,而不是发出事件的东西。要解决此问题,请在发出 ajax 请求之前存储此副本:

                   }else{
                        var me = this;
                        $.ajax({
                            ...
                            success: function(data){
                                description = data[0];
                                $(me).css('width', '70%');
于 2012-07-21T19:35:36.113 回答
11

只需将此添加到您的$.ajax通话中...

context: this,

......它会工作的。


$.ajax({
    context: this, // <-- right here
    url:'scripts/php/fetchResultsData.php',
    data: {action:value},
    type: 'post',
    dataType: 'json',
    success: function(data) { // ...

于 2012-07-21T19:48:40.030 回答