Мой сценарий выглядит так:
$.ajax({
url: _url,
type: 'GET',
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (result) {
...
}
}).done(function () {
for(var i=0;i<7;i++) {
this["td"+i] = $('#bodychel-' + coachId + clubId + ' table tbody td:eq(' + (i) + ')').height();
$('#bodychel-' + coachId + clubId + ' table thead th:eq(' + (i) + ')').css({ height: this["td"+i] });
}
});
Если я console.log(this["td"+i]);
, результат отличается для Chrome и Safari. результат хрома верен
Как я могу решить эту проблему?