$('.element').each(function(){
$(this).load('file.php',function(){
$(this).show(); // this row is not working
});
});
Run Code Online (Sandbox Code Playgroud)
要么
$('.element').each(function(){
setTimeout(function(){
$(this).show(); // this row is not working
},1000);
});
Run Code Online (Sandbox Code Playgroud) jquery ×1