我试图为光层设计建立一个显示屏,这是一个简单的网页。 ajax的电话是,根据客户用来更新信息的内部页面,每10秒更新屏幕。
我的问题是,在没有互联网连接的情况下,展台仍会更新,没有显示。 如果当时有互联网连接,那么如果没有网络连接,那么时间就会重新开通,那么我怎么能够改变以下的代码。
<script type="text/javascript">
// Run the AJAX call to grab the data once
$.ajax({
type: "POST",
url: "ajax/getMessages.php?section=1",
data: "",
complete: function(data){
//print result in targetDiv
$( #content_1 ).html(data.responseText);
}
});
// Then run the same script on a 10-second timer
setInterval(function(){
$.ajax({
type: "POST",
url: "ajax/getMessages.php?section=1",
data: "",
complete: function(data){
//print result in targetDiv
$( #content_1 ).html(data.responseText);
}
});
},10000);
</script>