Jump to content
  • 0

обработчик выпадающего списка


apexis
 Share

Question

Есть скрипт, который работает если на странице только он. Как только встроишь его в страницу - перестает работать. Дело в скрипте или в javascript подключенных к странице?

[ code ]<script type="text/javascript">

function Select()

{

prod=document.all.PROD.selectedIndex

if (prod==0)

{

document.getElementById('progr').innerHTML = '№5, №6, №7 - один раз в день.'

}

else

if (prod==1)

{

document.getElementById('progr').innerHTML = '№5, №6, №7 - два раза в день.'

}

}

</script>[ /code ]

клиентская часть

[ code ]<select name = "prod" onchange = Select() >

<option>"Паркес" 7:</option>

<option>"Паркес" 77:</option>

</select>: <span id='progr'>№5, №6, №7 - один раз в день.</span>[ /code ]

Проблемная страница - http://lidomed.com.ua/test/gaimorit.php

Edited by apexis
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

1.Забыл "" -onchange = "Select()"

2.Вместо document.all используй prod=document.getElementsByName('prod')[0].selectedIndex

3.<option>"Паркес" 7:</option> а здесь лапки не нужно через код символа ставлять?

Спасибо, помогло.

Лапки убрал вообще.

Edited by apexis
Link to comment
Share on other sites

  • 0

Еще одна проблема. Когда выбираешь в списке паркес 77, а потом обновляешь страницу - схема лечения меняется на паркес 7( уходит в исходную позицию), а выбранный в списке Паркес 77 так и остается. Как заставить список возвращаться в исходную позицию при перезагрузке?

Link to comment
Share on other sites

  • 0

гиц



<select name = "prod" onchange = Select() >
<option>"Паркес" 7:</option>
<option selected="selected">"Паркес" 77:</option>
</select>

<script>
window.onload=function(){
document.getElementsByName('prod')[0].options[1].selected='selected'
}
</script>

не работает в Firefox со скриптом и без скрипта. А в Opera и без скрипта все нормально.

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