当前代码
$.ajax({
type: "GET",
url: "http://xSSHplusx.api.channel.livestream.com/2.0/livestatus.xml",
dataType: "xml",
success: function (xml) {
var xmlDoc = $.parseXML(xml),
$xml = $(xmlDoc);
if($xml.find('ls:isLive').text()=='true'){
player.load('SSHplus');
}
else{
player.load('SaveStateHeroes');
}
}
});
我需要找到一种方法,每隔几秒重复一次检查,以便从 XML 输出中获取更新,以实际测试状态何时从 false 变为 true