Jump to content
  • 0

Недоработанное древовидное меню


artwalek
 Share

Question

Доброго дня друзья.

Есть небольшой код для отображения древовидного меню:

<script Language="Javascript">
function menuClick(elemId) {
if (document.getElementById(elemId).style.display == 'none')
document.getElementById(elemId).style.display = 'block';
else document.getElementById(elemId).style.display = 'none';
}
</script>-

представление в HTML:

<div style="text-decoration: none; color: white; cursor: pointer;" onClick="menuClick('1')">Меню</div>
<div class="sub" id="1" style="display: none;">
<a href="#1">Ссылка 1</a>
<a href="#2">Ссылка 2</a>
<a href="#3">Ссылка 3</a>
</div>

Все прекрасно работает. Но, нехватает самого главного, чтобы при клике допустим на Ссылку1 при перезагрузке страницы меню не сворачивалось, т.е. сохранялась в раскрытом виде. Можете помочь? Нужно именно JavaScript'ом.

Спасибо.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
http://www.codenet.ru/webmast/js/javascrip...r-functions.php

здесь есть функции установки/взятия куки

Спасибо.

e1f а вы не могли бы немного помочь мне, я только еще начинающий. Что-то я даже не знаю что делать с функциями из той ссылки которую вы процитировали :)

Edited by artwalek
Link to comment
Share on other sites

  • 0

ну что-то такое, к примеру:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#menu {display:none;}
</style>
<script type="text/javascript">
function getCookie( name ) {
var start = document.cookie.indexOf( name + '=' );
var len = start + name.length + 1;
if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) { return null; }
if ( start == -1 ) { return null; }
var end = document.cookie.indexOf( ';', len );
if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}

function setCookie( name, value, expires, path, domain, secure ) {
var today = new Date();
today.setTime( today.getTime() );
if ( expires ) { expires = expires * 1000 * 60 * 60 * 24; }
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name+'='+escape( value ) +
( ( expires ) ? ';expires=' + expires_date.toGMTString() : '' ) +
( ( path ) ? ';path=' + path : '' ) +
( ( domain ) ? ';domain=' + domain : '' ) +
( ( secure ) ? ';secure' : '' )
;
}
function show_menu() {
document.getElementById('menu').style.display = 'block';
setCookie('myMenuCookie', '1', '365');
}
function check_menu() {
if (getCookie('myMenuCookie')) {
document.getElementById('menu').style.display = 'block';
}
}
</script>
</head>
<body onload="check_menu();">
<a href="#" onclick="show_menu();">Show menu</a>
<div id="menu">бла бла бла бла бла бла</div>
</body>
</html>

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