Все равно ошибка.
Сделал так:
CODE:
<script type="text/javascript">
function show_guide (s){
for (i=1; i<=6; i++)
if (s==i)
show_layers('s'+i);
else hide_layers('s'+i);
}
function show_layers(id)
{
document.getElementById(id).style.display='block';
}
function hide_layers(id)
{
document.getElementById(id).style.display='none';
}
</script>
и
CODE:<select name="guide_select" id="guide_select" style="width: 200px;font-family: verdana; font-size: 12px;" onchange="show_guide(this.options[this.selectedIndex].value);">
Все равно ошибка(Отредактировано автором: 05 Августа, 2007 - 08:27:54) |