- Автор темы
- #1
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Хи, я тоже этот класс использую.....нормальный так классик, ток я его переделал под чат, весело получилось =)VVS написал(а):
Papazzzoglo написал(а):Ответ сервера:
We're sorry, but we could not fulfill your request for /resources/code/sack/ on this server.
да нет - xajax просто наилучшийN!trO написал(а):меня лично устаривает xAjax class ... достоаточно хороший и прост в работе ...
<script>
var http_request=false;
function ajax_request(url){http_request=false;if(window.XMLHttpRequest){http_request=new XMLHttpRequest();if(http_request.overrideMimeType){http_request.overrideMimeType('text/xml');}}else if(window.ActiveXObject){try{http_request=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{http_request=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}}
if(!http_request){alert('Не могу создать XMLHTTP объект');return false;}
http_request.onreadystatechange=alertContents;http_request.open('GET',url,true);http_request.send(null);}
function alertContents(){if(http_request.readyState==4){if(http_request.status==200){reciver(http_request.responseText);}else{}}}
function reciver(_text)
{
//тут обработка ответа
}
</script>
<?
header("Content-type: text/plain; charset=windows-1251");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
echo "привет от сервера!";
?>