Jump to content
  • 0

Работа с AJAX


bgraf
 Share

Question

Добрый день!

Помогите разобраться.

Изучаю AJAX и решил первоначальную проблему начать решать с малого.

есть index.php


.......
<script type="text/javascript" src="galery/search/ajax.js"> </script>
</head>


<body>
<div style="width:100px; height:100px; background-color:#00FF00;" id="aaaa" onclick="bgraf()"></div>
<div id="bbbb"></div>
</body>
</html>

при нажатии на div вызываю функцию которая находится в ajax.js


var xmlhttp = null;
function getXmlHttp()
{
alert(xmlhttp);
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E)
{
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined')
{
xmlhttp = new XMLHttpRequest();
}

}

<!——————————————————————————————->
function bgraf()
{
getXmlHttp();
alert(xmlhttp);
xmlhttp.open('GET', 'temp_ajax.php', true);
xmlhttp.onreadystatechange = processRequestChange;
xmlhttp.send(null);
}

<!——————————————————————————————->
function processRequestChange()
{
alert('xmlhttp.readyState = '+xmlhttp.readyState);
if (xmlhttp.readyState == 4)
{
alert('xmlhttp.status = '+xmlhttp.status);
if(xmlhttp.status == 200)
{
document.getElementById("bbbb").innerHTML=xmlhttp.responseText;
}
}
}

и есть temp_ajax.php


<?php
$d = "Привет!!!";
echo $d;
?>

надеялся получить в <div id="bbbb"></div> слово Привет!!!

но тут проблема вIE на строчку xmlhttp.open('GET', 'temp_ajax.php', true); ругается и выдает ошибку permission denied а параметр xmlhttp.status равняется 0.

Подскажите, помогите разобраться.

Спасибо

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

1. урл должен быть полным, типа http://.....

2. низя конектить к другому сервевру по отношению к урлу откуда запускается

(тоесть, если мы открыли httt://url.ru, то конектить можем только к httt://url.ru, иначе безопасность не пустит)

Edited by iillyyaa2
Link to comment
Share on other sites

  • 0

1. урл должен быть полным, типа http://.....

2. низя конектить к другому сервевру по отношению к урлу откуда запускается

(тоесть, если мы открыли httt://url.ru, то конектить можем только к httt://url.ru, иначе безопасность не пустит)

Спасибо, заработало, но я делал другой пример и просто указал название файла который находился в той же папки и все работало ВОПРОС ПОЧЕМУ?

вот тот пример 1.php


<html>
<head>
</head>
<body>
<a href="http://xmlhttprequest.ru/">http://xmlhttprequest.ru/</a><br />
Unix Time : <div id="NewTime"></div>
<script>
function getXmlHttp()
{
var xmlhttp;
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E)
{
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined')
{
xmlhttp = new XMLHttpRequest();
}

return xmlhttp;
}

var xmlhttp = getXmlHttp();
xmlhttp.open('GET', 'SendTime.php?r='+Math.random(), true);
xmlhttp.onreadystatechange = processRequestChange;
xmlhttp.send(null);

function CreateRequest()
{
xmlhttp.abort();
xmlhttp.open('GET', 'SendTime.php?r='+Math.random(), true);
xmlhttp.onreadystatechange = processRequestChange;
xmlhttp.send(null);
}

function processRequestChange()
{
alert('xmlhttp.readyState = '+xmlhttp.readyState);
alert(xmlhttp.responseText);
if (xmlhttp.readyState == 4)
{
alert('xmlhttp.status = '+xmlhttp.status);
if(xmlhttp.status == 200)
{
document.getElementById("NewTime").innerHTML=xmlhttp.responseText;
}
}
}

var timer=setInterval("CreateRequest()",1000);
</script>
</body>
</html>

SendTime.php


<?
echo(mktime());
?>

ПОДСКАЖИТЕ В ЧЕМ РАЗНИЦА ведь тут я не указывал полный юрл а работает???

Edited by bgraf
Link to comment
Share on other sites

  • 0

честно, лень читать код :) может где то ошибка, включая русскую букву вместо английской...

тебе надо смотреть отправляется запрос или нет, какие ошибки и т.д.

function loadXMLDoc(url_poisk) {
if (window.XMLHttpRequest) {
req_poisk = new XMLHttpRequest();
} else if (window.ActiveXObject) {
req_poisk = new ActiveXObject('Microsoft.XMLHTTP');
}
if (req_poisk) {
req_poisk.onreadystatechange = function () {
if (req_poisk.readyState == 4) {
if (req_poisk.status == 200) {
alert(req_poisk.responseText);
}
}
};
req_poisk.open('GET', url_poisk, true);
req_poisk.send();
}
}

можешь использовать такую фунцкию.. всё в 1 месте, а не разрублено на 3 части

Link to comment
Share on other sites

  • 0

1. урл должен быть полным, типа http://.....

2. низя конектить к другому сервевру по отношению к урлу откуда запускается

(тоесть, если мы открыли httt://url.ru, то конектить можем только к httt://url.ru, иначе безопасность не пустит)

URL не обязательно должен начинаться с http://

А вот кроссдоменные запросы действительно запрещены.

Edited by alanvanduke
Link to comment
Share on other sites

  • 0

Люди помогите! НУЖНО ПРОПИСЫВАТЬ полный url нет! ВОПРОС ПРИНЦИПИАЛЬНЫЙ. Файлы находятся в одной папке только в одном примере работает в другом нет. Монстры программирования вы же сталкивались с этой проблемой. у меня до истерики дохожит то работает то не работает.

Link to comment
Share on other sites

  • 0

На первый взгляд грубых ошибок не нашёл.

Может так?

var xmlhttp = getXmlHttp();
if (!xmlhttp) alert('Что-то не получилось');

Вообще, наставь алертов во всех if и try-catch и проследи ход выполнения скрипта по ним.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy