我正在使用 jQuery“加载”函数从外部 PHP 文件中获取产品名称及其描述。此外,我希望使用 fadeIn() 函数在页面上显示此文本。我怎样才能在我的 jQuery 代码中做到这一点?
$('document').ready(function() {
refreshEPosts();
function refreshEPosts(){
$('#crPanel').load('getNewPosts.php', function(){
setTimeout(refreshEPosts, 1500);
});
}
});
更新
$('document').ready(function() {
refreshEPosts();
function refreshEPosts(){
$('#crPanel').load('getNewPosts.php', function(data) {
//For now, lets just log the data
console.log(data); //should be your echo'd php stuff
setTimeout(refreshEPosts, 1500);
$('#crPanel').fadeIn(data);
});
}
});