Jump to content
  • 0

Проблема с onlcick() Помогите разобраться


Creoman
 Share

Question

Приветствую всех!

 

Есть проблема, очень надеюсь на вашу помощь.

Делаю сайт http://magazin.amedigroup.com/

Всем кнопкам "Смотреть полный каталог" прикрутил событие onclick(), но он почему-то срабатывает только после двойного щелчка по кнопке. Сам скрипт проверял на работоспособность создавая тестовую страницу - все работает, проблем нет, но на этом сайте что-то мешает.

 

Собственно скрипт:

 

<script type="text/javascript">
 
function toggle_show(id) {
 
document.getElementById(id).style.display = document.getElementById(id).style.display == 'none' ? 'block' : 'none';
 
}
 
</script> 
 
и кнопка: 
 
<div id="mybutton" class="red-btn" onclick="toggle_show('c1');toggle_show('d1')">Cмотреть полный каталог</div>
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
сначала ваш скрипт не видит в style.display=none и ставит none потом уже видит none и ставит block пропишите у #d1 style="display:none;"

 

извиняюсь, что не указал код css, там у меня как раз  было прописано #d1 style="display:none;"


function toggle_show(id) { var elem = document.getElementById(id); elem.style.display = elem.offsetWidth ? 'none' : 'block'; }

 

Спасибо огромное, ваш скрипт очень помог! 

Link to comment
Share on other sites

  • 0

js не хавает то, что вы указали в css нужно указывать в теле самого тега в параметре style или использовать другой способ получения стилей http://sartas.ru/javascript-poluchenie-stilej-iz-css-fajla/

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