我有这个 Jquery 代码,我只想在新数据不同时刷新内容
的 html 代码$title.html
是"div#title>h4"
function onair() {
$.ajax({
url: 'player.php', // my json content file
data: "",
dataType: 'json',
success: function (data) {
var artiste = data[0];
var titre = data[1];
var title = data[2];
var cover = data[3];
var $cover = $("#cover"),
$title = $("#title");
if ( $title.html != title ) {
$cover.fadeOut(300, function (data) {
$cover.html("<img src='" + cover + "' width='220px' height='210px'>");
$cover.fadeIn(300);
});
$title.fadeOut(300, function (data) {
$title.html("<h4> " + title + " </h4>");
$title.fadeIn(300);
});
}
setTimeout("onair()", 1000);
}
谢谢你的帮助 :)