当试图访问 $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 部分之外,它可以工作,但是我无法获得“描述”。