Jump to content
  • 0

Правомерно ли такое document.getElementById('m2').onClick


Brain_activities
 Share

Question

Привет!

Собсно есть код, но вот эта строка выдает ошибки

 document.getElementById('m1').onClick = chmenu;

вообще это красиво выглядит но не работает.

Вопрос почему не работает и что сделать чтобы заработало.

<style type="text/css" media="screen">
body{
padding:30px;
margin:30px;
}
#c1{
background-color:#CCCCCC;
display:block;
width:202px;
clear:left;
}
#c2{
background-color:#99CCCC;
display:none;
width:202px;
clear:left;
}
#m1{
background-color:#99CCCC;
color:#333333;
text-decoration:underline;
display:block;
width:100px;
padding:0px;
float:left;
text-align:center;
cursor:pointer;
border:1px dotted #CC6633;
}
#m2{
background-color:#CCCCCC;
color:#333333;
text-decoration:underline;
display:block;
width:100px;
padding:0px;
float:left;
text-align:center;
cursor:pointer;
border:1px dotted #CC6633;

}
</style>
<script language="javascript" type="text/javascript">
<!--
var bMenu = true;
document.getElementById('m1').onClick = chmenu;
document.getElementById('m2').onClick = chmenu;
function chmenu(){
var d = document;
if(bMenu){
d.getElementById('c1').style.display = "none";
d.getElementById('c2').style.display = "block";
}else{
d.getElementById('c2').style.display = "none";
d.getElementById('c1').style.display = "block";
}
bMenu = !bMenu;
}
//-->
</script>
</head>
<body>
<div onClick="chmenu()" id="m1">Menu 1</div><div onClick="chmenu()" id="m2">Menu 2</div>
<div id="c1">
Dolor ipsum color sit ammet

</div>
<div id="c2">
ammet sit color ipsum Dolor

</div>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
...вообще это красиво выглядит но не работает.

А что красивого-то?

Вопрос почему не работает и что сделать чтобы заработало.

Для начала такой совет - не пытайтесь получить ссылку на узел документа:

document.getElementById('m1') // вызов метода в "шапке" документа!!!

до тех пор, пока этот элемент не "появится" в документе...

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