Jump to content
  • 0

Несколько таймеров на одну страницу


xmad
 Share

Question

Здравствуйте,

Подскажите, пожалуйста, как на JS сделать несколько таймеров, у меня не получается.

<span id="cd">60</span>

PHP скрипт выводит время (разное), но таймер работает только с одним элементом cd, другие стоят на месте.

function cooldown() {
var cd=document.getElementById('cd');
setTimeout(cooldown,1000);
cd.innerHTML--;
if (cd.innerHTML<=0) document.getElementById('cd_text').innerHTML='';
}
setTimeout(cooldown,1000);

Да, я знаю что скрипт неверный, но я не понимаю как сделать чтобы похожий скрипт работал со всеми элементами cd :/

Подскажите?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

id должен быть уникальным.

не понял, что в целом надо, в отдельности так:

можно сделать блок с id и в нем уже прописать span

доступ через getElementById('id').getElementsByTagName('span')

вернет массив.

Если бы не ie можно было бы через getElementsByClassName.

Другой вариант - хранить id как имя_номер и в цикле после загрузки страницы тупо скопировать в массив getElementById('cd'+i);.

Доступ к элементам DOM - http://javascript.ru/tutorial/dom/search

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