Jump to content
  • 0

Проблема с AJAX


malsyst
 Share

Question

Доброго времени суток. Помогите, пожалуйста, разобраться: почему не подгружается нужный Div?


<div id="Container"></div>
<script>
var Link='http://index2.html';
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',Link,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){
if(xmlhttp.status==200){
var Container=document.getElementById('Container');Container.innerHTML=xmlhttp.responseText;
alert(Container.document.getElementById('data').innerHTML)
}}};
xmlhttp.send(null);
</script>

alert(Container.document.getElementById('data').innerHTML) - по идее должен выводить только контент с div id="data", но отображается все содержимое страницы index2.html

Подскажите, пожалуйста, что исправить!?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
alert(Container.document.getElementById('data').innerHTML) - по идее должен выводить только контент с div id="data"

выводит весь html код. это раз

два - вы ведь и так загружаете полностью всю страницу, по-этому там и есть все содержимое.

ЗЫ: пользуйтесь jquery. легче намного

Edited by USF
Link to comment
Share on other sites

  • 0
alert(Container.document.getElementById('data').innerHTML) - по идее должен выводить только контент с div id="data"

выводит весь html код. это раз

два - вы ведь и так загружаете полностью всю страницу, по-этому там и есть все содержимое.

ЗЫ: пользуйтесь jquery. легче намного

Подскажите, пожалуйста, как вывести определенный Div?

Суть в том, что страница подгружается в Контейнер, из которого выпарсивается нужный блок(Он должен всплыть в Алерте - а сам блок можно удалить remove, после подгрузки переменной(что в alert) в выбранный блок


<div id="Container" style="display:none">

Edited by malsyst
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