Jump to content
  • 0

Помогите найти ошибку


supernet95
 Share

Question

Помогите найти ошибку


<html>
<head>
<script>
function otkr(){
var svertmenu = document.getElementByid("svertmenu");

svertmenu.style.display = "block";
}
function zakr(){
var svertmenu = document.getElementByid("svertmenu");

svertmenu.style.display = "none";
}
</script>
</head>
<body>
<a href="#" onmouseover="otkr()" onmouseout="zakr()">Меню</a>
<div id="svertmenu" style="display: none;">Это меню</div>
</body>
</html>

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

<html>
<head>

</head>
<body>
<a href="#" onmouseover="otkr()" onmouseout="zakr()">Меню</a>
<div id="svertmenu" style="display: none;">Это меню</div>
</body>

<script>
var svertmenu = document.getElementById("svertmenu");
function otkr(){
svertmenu.style.display = "block";
}
function zakr(){
svertmenu.style.display = "none";
}
</script>

</html>

Во-первых, getElemenyById (I - большая).

Во-вторых, скрипт искал ещё когда не загрузилося DOM. Исправляется, тем (запомните это и применяйте), что вставляется после html, но в теге <html>, всмысле под конец. Или, менее хороший вариант - window.onload

А, ещё определение переменной вынес из функций, не знаю влияло ли на это, ну так лучше оставьте

Edited by alexandr_v-vich
Link to comment
Share on other sites

  • 0

Как вариант - можете написать на JQuery, используя событие .hover()


$(document).ready(function(){
$('body > a').hover(function(){
$('#svertmenu').css('display', 'block');
}, function(){
$('#svertmenu').css('display', 'none');
});

});

Конечно, если у вас на странице будет несколько ссылок, правильней будет присвоить этой какой-нить id. :)

Edited by vikver
Link to comment
Share on other sites

  • 0

Как вариант - тут и без js можно...


<html>
<head>
</head>
<body>
<div id="base">
<a href="#">Меню</a>
<div id="svertmenu">Это меню</div>
</div>
</body>

<style>
#base #svertmenu {display: none;}
#base:hover #svertmenu {display: block;}
</style>
</html>

Link to comment
Share on other sites

  • 0

Int,

http://jsfiddle.net/RHJ9W/6/

http://jsfiddle.net/RHJ9W/7/

Когда я так делал, мне ответили, как вот я выше, и посоветовали то, что я, вот, выше) Я не программист и не кодер, почему оно так не скажу, но вроде всё к тому идёт...

Edited by alexandr_v-vich
Link to comment
Share on other sites

  • 0

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script>
function otkr() {
var svertmenu = document.getElementById("svertmenu");
svertmenu.style.display = "block";
}
function zakr() {
var svertmenu = document.getElementById("svertmenu");
svertmenu.style.display = "none";
}
</script>
</head>
<body>
<a href="#" onmouseover="otkr()" onmouseout="zakr()">Меню</a>
<div id="svertmenu" style="display: none;">Это меню</div>
</body>
</html>

Ты давай не мухлюй, пиши так, как в оригинале было!

Link to comment
Share on other sites

  • 0

А ну да, всё, понял, приношу извинения. Я же и вынес из функции определение переменной, потому и не успевала, а в функции - да. А так ошибка только в букве была..

Перепутался немного....но суть та же. Лучше всегда скрипты после писать...да и переменные выносить в таких ситуациях.

Спасибо, что поправили)

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