Jump to content
  • 0

Простенькое меню


Anime
 Share

Question

вот кодик :) не ругать, новичек :(

<html>

<head>
<title></title>
<style type="text/css">
#hell {
color: red;
}
</style>
<script language="javascript">
function changeColor(good) {
if(good == "hell") {
document.getElementById(good).style.color = "#000000";
}
}
</script>
</head>

<body>
<a href="index.html" id="hell" onClick="java script:changeColor('hell')">Press 1</a>

<a href="index.html" id="hell" onClick="java script:changeColor('hell')">Press 2</a>
</body>

</html>

при клике он меняет цвет и сразу в стандартный цвет возвращается

а мне надо чтобы при клике ссылка меняла свой цвет и оставался таким же, а потом когда при нажатии на дргую ссылку он скидывался(с передыдущей ссылки в первоначальный цвет) и переходил на другую

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

0) Пожалуйста перенеситев "Для начинающих" или "CSS"

1) прменяй не id, а class и забудь тут про JS - он тут лишний

2)

A.top_menu {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
font-weight: bold;
}

A.top_menu:link {
text-decoration: none;
color: white;
}


A.top_menu:visited {
text-decoration: none;
color: white;
}

A.top_menu:active {
text-decoration: none;
color: white;
}

A.top_menu:hover {
text-decoration: none;
color: orange;
}

побалуйся с этим^^

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