我有一些javascript发布到php,每秒一次,检查一个时间表,如果满足开始时间,基本上返回“刷新”,然后在结束时间时返回刷新。
如果“刷新”,它会重新加载显示其内容的页面。
function checkSchedules(){
if(sch_timer)
clearInterval(sch_timer)
$.ajax({
url:'checkSchedule_test.php?mediaID='+mediaIDArray[schCount],
type:'GET',
complete: function (response) {
if(response.responseText == "refresh"){
location.reload(true);
}
},
error: function () {
alert('Sorry there was an error!');
},
})
sch_timer = setTimeout(checkSchedules,1000);
schCount = (schCount >= urlArray.length - 1)? -1 : schCount
++schCount
}
在php中
if ($current_date>=$startDate && $current_date<=$endDate){
if ($current_time >= $startTime && $current_time <= $endTime){
$timeout = $endTime - $current_time;
if ($current_time >= $startTime && $current_time <= ($startTime+3000)){
echo "refresh";
}
if($timeout<=3000){
echo "refresh";
}
}
}
当开始时间满足时,它会更新,效果很好。 然后当满足结束时间时刷新但内容相同。 如果我点击刷新它工作正常。
我尝试了不同的reload()方法(document.reload等等)
有没有人有任何想法?
干杯
答案 0 :(得分:0)
使用console来了解从服务器返回的内容
使用debug()
或console.log()
来了解从php返回的内容...重新加载脚本是正确的问题将在ajax期间