Jump to content
  • 0

onclick в ссылке


Dead_Kenny
 Share

Question

Здравствуете, стоит задача заменять содержимое ячейки таблицы по клику, реализовал так:

_____________________________________________

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<script>

function one(){

c1.style.display = '';

c2.style.display = 'none';

c3.style.display = 'none';

}

function two(){

c1.style.display = 'none';

c2.style.display = '';

c3.style.display = 'none';

}

function three(){

c1.style.display = 'none';

c2.style.display = 'none';

c3.style.display = ''; }

</SCRIPT>

<HTML>

<a class="hide" href="#" onClick="one();">Один</a>

<a class="hide" href="#" onClick="two();">Два</a>

<a class="hide" href="#" onClick="three();">Три</a>

<div id="c1" style="display: ;">

Содержание 1

</div>

<div id="c2" style="display: none;">

Содержание 2

</div>

<div id="c3" style="display: none;">

Содержание 3

</div>

</HTML>

_____________________________________________

Сам скрипт загружается в страницу из *.js файла, возникли следующие проблемы:

1) При установке

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

в FireFox при нажатии на ссылки ничего не происходит, а IE все работет. Т.е. не работает сам onClick, поскольку пробовал пихать его не только в ссылки, но и в слои (<div onClick="two()">Два</div>)

Как это грамотно сделать.? Заранее спасибо :rolleyes:

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

В данном случае проблема не в регистре, а в глобальных переменных по каждому ID (которые IE заводит всегда, а FF — только в quirks mode, ЕМНИП). Правильно — document.getElementById('c1').style.display = ''; и далее по аналогии.

Link to comment
Share on other sites

  • 0

В данном случае проблема не в регистре, а в глобальных переменных по каждому ID (которые IE заводит всегда, а FF — только в quirks mode, ЕМНИП). Правильно — document.getElementById('c1').style.display = ''; и далее по аналогии.

Спасибо! Как я сам не допер? ^_^

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