0
此代碼片段是html 5獨立網頁的一部分。有人可以告訴我如何更新此代碼,要求該人檢查他們的互聯網連接,如果他們無法訪問該網址?現在它什麼都不做,這是不可接受的。處理ajax/json錯誤處理
//get grid for station
function insertTideGrid(marker, stationId, defaultCenter) {
currentMarker = marker;
currentStationId = stationId;
if(grids['station'+stationId]) {
addTextToInfowindow(marker, grids['station'+stationId], defaultCenter);
} else {
addTextToInfowindow(marker, '<img src="../images/ajax-loader.gif" /> <br /> Loading...', defaultCenter);
$.ajax({
url: 'http://www.mydomain/page.php',
dataType: 'jsonp',
type: 'GET',
data: {'station': stationId, 'json': true},
success: function(data){
}
})
}
}