при наведении на ссылки(группа1,группа2,группа3)открывается подменю этих ссылок.При нажатии на ссылки подменю должны открываться соответствующие страницы, но они не открываются в Opere,Mozille(код работает в IE)
Ошибка наверно в этой строке: document.location.href(name);
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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
olya
при наведении на ссылки(группа1,группа2,группа3)открывается подменю этих ссылок.При нажатии на ссылки подменю должны открываться соответствующие страницы, но они не открываются в Opere,Mozille(код работает в IE)
Ошибка наверно в этой строке: document.location.href(name);
Что подскажете?
<body>
<form><div style='color:blue;text-decoration:underline'>
<p onMouseOver=f1()>gruppa1</p>
<ul id='group_1'name='group_1'></ul>
<p onMouseOver=f2()>gruppa2</p>
<ul id='group_2'name='group_2'></ul>
<p onMouseOver=f3()>gruppa3</p>
<ul id='group_3'name='group_3'></ul>
</div></form>
<script>
function f1(){
document.getElementById("group_2").innerHTML=""
document.getElementById("group_3").innerHTML=""
document.getElementById("group_1").innerHTML="<li onClick=on_Select('art1.html')>statja1</li>"+
"<li onClick=on_Select('art2.html')>statja2</li>"+
"<li onClick=on_Select('art3.html')>statja3</li>"
}
function f2(){
document.getElementById("group_1").innerHTML=""
document.getElementById("group_3").innerHTML=""
document.getElementById("group_2").innerHTML="<li onClick=on_Select('art4.html')>statja4</li>"+
"<li onClick=on_Select('art5.html')>statja5</li>"
}
function f3(){
document.getElementById("group_1").innerHTML=""
document.getElementById("group_2").innerHTML=""
document.getElementById("group_3").innerHTML="<li onClick=on_Select('art6.html')>statja6</li>"
}
function on_Select(name){
document.location.href(name);
}
</script>
Link to comment
Share on other sites
12 answers to this question
Recommended Posts
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.