Jump to content
  • 0

Проблема с getElementById()


Pavel_html
 Share

Question

Только я начал писать програму, тут выскочила ошибка...

Statement on line 2: Cannot convert undefined or null to Object

из-за этого кода:

<html>
<head>
<script type="text/javascript">
mover=document.getElementById('mover').style;
mover.display='block'
</script>
</head>
<body>
<div id="mover" style="display:none;">
Пример текста
</div>
</body>
</html>

в чем дело??

Edited by Pavel_html
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Ну если ты сам пишешь страницу с нуля, то без проблем. А вот если ты пишешь только часть, то есть шанс что кто-то тоже захочет применить виндов онлоад, а твоей не увидит, из-за этого выскочит ошибка. К тому же зная что код выполняется сверху вниз, довольно наглядно видно когда твой скрипт сработает.

Link to comment
Share on other sites

  • 0

делай всегда:

function addEvent(e,t,f){
if (e.addEventListener) e.addEventListener(t, f, false);
else if (e.attachEvent) e.attachEvent('on'+t, f)
}
function removeEvent(e,t,f){
if (e.removeEventListener) e.removeEventListener(t, f, false);
else if (e.detachEvent) e.detachEvent('on'+t, f)
}

и никогда не надо париться о проверке, есть ли там обработчик, нет его там...

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