необработанное исключение: [Exception ... »Компонент возвратил код ошибки: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.getAllResponseHeaders]« nsresult: «0x80040111 (NS_ERROR_NOT5»: 12> «= 12»: 12 = «»: 1299: «= 0»: 1299): «:» = 1299: «= 0»: 1299: «= 0»: 1299: «= 0»: 1299:: «= 0):»: 099:> = «=»: «:»: «= 0» :_995:: «=»: «:»: «»: 0 »:« = 0 »: расположение:> 0: 0 = 0: 0 => 0> = 0>> =>:« = 0 »:>:« »: расположение: расположение:>1002 * :: anonymous :: line 16 "data: no]
Мои повторяющиеся вызовы AJAX не могут загружаться полностью, они просто загружаются и загружаются ... Это из вызовов ajax - 3, включаятот, который повторяется каждые 5 секунд? Как это исправить?
Редактировать: Я использую этот код для включения jQuery
<script src="http://code.jquery.com/jquery-1.5.min.js"></script>
Вот мои запросы AJAX:
$.ajax({
type: "GET",
url: "subscribe1.php",
data: "feed="+feeded+"&user="+thisuserd ,
success: function(msged){
$("#csub").html(msged);
}
});
$(document).ready(function() {
setInterval("ajaxd()",5000);
});
function ajaxd() {
var thisuser = $("#thisusern").text();
$.ajax({
type: "GET",
url: "newstitle.php",
data: "user="+thisuser,
success: function(msg){
$("#edix").html(msg);
}
});
}
$.ajax({
type: "GET",
url: "newscontent.php",
data: "title="+titled+"×tamp="+timestampd,
success: function(msgd){
var splitups = msgd.split("|");
var titleds = splitups[0];
var content = splitups[1];
$("#whatsup").html(titleds);
$("#content").html(content);
}
});