Jump to content
  • 0

Активный пункт меню


Gorobez
 Share

Question

есть список вида

<ul id="id_test">
<li><a href="http://test.ru/blog/link1.html">link1</a>
<li><a href="http://test.ru/blog/link2.html">link2</a>
<li><a href="http://test.ru/blog/link2.html">link3</a>
</ul>

.current a{
color: red;
}

как на js сделать подсветку активной ссылки?

Edited by Gorobez
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Блин, вот совпадение. Только сегодня на работе подумал (прикрутив вчера в очередной раз подсветку ссылки к одному проекту), надо бы заметку набросать на эту тему небольшую. Прихожу домой и вижу тут эту тему. В общем, Горобец и всем страждущим посвящаю:

Активный пункт меню

:)

  • Like 1
Link to comment
Share on other sites

  • 0

Я вот такой сниппет писал для статики :)


//__ Locations detect
$.root.find('#head ul a').each(
function() {
var rLoc = document.location.pathname;
var lLoc = $(this).attr('href');
if( rLoc.match(lLoc) ) {
$(this).parent('li').addClass('location');
}
}
);

Подсвечивает также по всем уровням вложенности, если есть совпадения.

Edited by Shift-Web
Link to comment
Share on other sites

  • 0

если приложение на Ajax, то можно воспользоваться таким вариантом

<!DOCTYPE html>
<html>
<head>
<title>Пример создания активного пункта меню</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="jquery.js"></script>
<style>
#id_test li a {
color: #006400;
}

#id_test li a:hover {
color: #dc143c;
}

.active {
color: #dc143c !important;
font-weight: bold;
}
</style>
</head>
<body>
<ul id="id_test">
<li><a href="#">link1</a>
<li><a href="#">link2</a>
<li><a href="#">link3</a>
</ul>
<hr/>

<script type="text/javascript">
$(function() {
$('#id_test li a').bind('click', function(event) {
$('#id_test li a').removeClass('active');
$(this).toggleClass('active');
});
});
</script>
</body>
</html>

Link to comment
Share on other sites

  • 0

Блин, вот совпадение. Только сегодня на работе подумал (прикрутив вчера в очередной раз подсветку ссылки к одному проекту), надо бы заметку набросать на эту тему небольшую. Прихожу домой и вижу тут эту тему. В общем, Горобец и всем страждущим посвящаю:

Активный пункт меню

:)

Я себе на сайте подобную штуку реализовал - работает. Там с кодом внимательнее нужно

Edited by mannvillage
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