Furax пишет:Первое - закрыть все теги iframe.
попробую
Furax пишет:Второе - код 123.js покажи; иначе - "не верю".
CODE:
/* Создание нового объекта XMLHttpRequest для общения с Web-сервером */
var readmsghttp = false;
var refresh_lock=false;
try { readmsghttp = new ActiveXObject("Msxml2.XMLHTTP");} catch (e) {try {readmsghttp = new ActiveXObject("Microsoft.XMLHTTP");} catch (e2) {readmsghttp = false;}}
if (!readmsghttp && typeof XMLHttpRequest != 'undefined') {readmsghttp = new XMLHttpRequest();}
function callServer() {
refresh_lock=true;
// Создать URL для подключения
var url = "re_test.php";
// Открыть соединение с сервером
readmsghttp.open("POST", url, true);
// Установить функцию для сервера, которая выполнится после его ответа
readmsghttp.onreadystatechange = updateMessage;
// Передать запрос
readmsghttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
readmsghttp.send('zapros=1');
}
var text="";
function updateMessage() {
if (readmsghttp.readyState == 4) {
var response = readmsghttp.responseText.split("|");
text=text+ response[0];
top.document.getElementById("ifr_left_up").contentWindow.document.getElementById("div_message").innerHTML=text;
}
refresh_lock=true;
}
function runOnce(){
if (refresh_lock==false){
callServer();
}
window.setTimeout("runOnce();", 5000);
}
window.setTimeout("runOnce();;", 5000);
браузер IE 8.8 |