Jump to content
  • 0

Сделать рабочим скрипт


Ино
 Share

Question

Поможите, товагисчи! Есть код. Не работает сцуко.

<select name onChange="show_actual_div('prefix_aa',this)">
<option value=nn>mmmm</option>
....
</select>
<div id=prefix_aa_nn1 style="display:none;">mmmmm1</div>
<div id=prefix_aa_nn2 style="display:none;">mmmmm2</div>
....
<script>
function show_actual_div(prefix,){
var ee = document.all; //здесь ещ? надо будет доделать, не во всех браузерах работает
for(var i=0;i<ee.length;i++)if(здесь условие, если prefix==началу ee[i]) ee[i].style.display='none'
current_nn = ...; /// здесь нужно написать код, возвращающий выбранное значение
document.getElementById(prefix+'_'+current_nn).style.display='block'
}
</script>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Это не код, а какие-то нам?тки...

Во первых пропущен второй аргумент функции: function show_actual_div(prefix,){.

Во вторых не используйте document.all. Используйте getElementsByTagName() или getElementById().

Вообще непонятно что он должен делать.

Link to comment
Share on other sites

  • 0
Это не код, а какие-то нам?тки...

Во первых пропущен второй аргумент функции: function show_actual_div(prefix,){.

Во вторых не используйте document.all. Используйте getElementsByTagName() или getElementById().

Вообще непонятно что он должен делать.

Ну как же... Выбираешь селект... Ниже отображается соответсвующий ему див.

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