Jump to content
  • 0

Обновление вывода PHP таймером с помощью Ajax не работает в Internet Explorer


Макс1
 Share

Question

Пример кода был приведен на cyberforum.ru. Текст, выводимый файлом message.php, обновляется на странице, открытой в браузере, каждые 5 секунд. Это работает во всех браузерах для Windows, кроме Internet Explorer (у меня IE 11) - информация выводится один раз и больше не обновляется. На этой странице обсуждалась похожая проблема http://www.softtime.ru/forum/read.php?id_forum=4&id_theme=27465 В чем здесь дело, и что можно сделать?

<?phpecho '<html><div id="content"></div>';	 echo '<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>';echo '<script>';echo 'setInterval(updateInfo, 5000);';echo 'function updateInfo()';echo '{';echo 'console.log(\'ajax\');';echo '$(\'#content\').load(\'message.php\');';echo '}';echo '</script></html>';?>
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Что отладчик то ИЕшный говорит ?

 

Странно что в других браузерах работает

function updateInfo(){         console.log('ajax');         $('#content').load('message.php');         setInterval(updateInfo, 5000);};

PS

что касается PHP вместо  echo  не проще Heredoc ?

Edited by -=ZzZ=-
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