Jump to content
  • 0

Обновление скрипта без обновления страницы


SibBear
 Share

Question

Есть скрипт, который находится на другом сайте. Скрипт на JS

В коде моей страницы написано

<script src="http://www.page.ru/script.php?param=1" type="text/javascript"></script>

Как сделать так чтобы, чтобы этот скрипт обновлялся с интервалом в минуту, но не обновлять всю страницу?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<script language='JavaScript'>

document.writeln('<form name=secForm><input type=text name=secField readonly Size=200></form>');

var TOut = 15;

var TBegin = new Date();

TBegin = TBegin.getTime();

function ShowSeconds()

{

var TCurrent = new Date();

TCurrent = TCurrent.getTime();

var TSek = Math.round((TCurrent - TBegin)/1000);

var Delta = TOut - TSek;

if (Delta > 0)

{

document.secForm.secField.value = Delta;

};

if (Delta == 0)

{

document.secForm.secField.value = 'Таймер=0';

//Сюда вызов твоей функции

};

};

timerID = setInterval('ShowSeconds()', 1000);

</script>

Данный код реализует обратный отсчет (15 сек в данном случае) по истичении которого Ты можешь что угодно повторить.

в принцыпе можно воспользоваться и

timerID = setInterval('ShowSeconds()', 1000 * 60);

где ShowSeconds() - Твоя функция

Link to comment
Share on other sites

  • 0

Это то понятно, тут как раз и вопрос, что кода скрипта я не вижу и не знаю, и менять его не могу. есть только вот такая ссылка

<script src="http://www.page.ru/script.php?param=1" type="text/javascript"></script>

и все. Т.е. код скрипта я не писал, так бы разобрался... И никто меня к нему не подпустит.

в результате выполнения скрипта получается квадрат цветной с определенным изображением. Оно меняется при перезагрузке страницы. Но мне нужно как то не перегружать всю страницу, а перегрузить только этот элемент.

Вот :-(

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