Jump to content
  • 0

Где ошибка?


vvsh
 Share

Question

Вот начал изучать js...

Пытался написать скрипт который заменяет содержимое див'а.

Вот js код:

text = document.getElementById("text");
text2 = "2";
document.getElementById('text').innerHTML=text2;

Вот html код:

<html>
<head>
<script type="text/javascript" src="javascript.js"></script>
</head>
<body>
<div id="text"></div>
</body>
</html>

Почему ничего не происходит?!

Edited by vvsh
Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Судя по приведенному коду при загрузке на странице должна появиться цифра 2. Но этого не происходит, потому что когда грузится и запускается скрипт объекта с id="text" еще не существует, он просто еще не загрузился.

Опишите необходимые действия в функции и запустите её на событии onLoad в тэге body, т.е. <body onLoad="Ваша функция()">.

А вот строка text = document.getElementById("text"); зачем?

Edited by Searcher
Link to comment
Share on other sites

  • 0

Я так и думал. Вот тперь представь, доходит браузер до твоего head, выполняфет твой скрипт, пытается найти элемент id="text", не находит и прекращает выполнение. Потом браузер доходит до твоего дива, рендирит его, но уже поздно, скрипт больше не выполнится.

Link to comment
Share on other sites

  • 0

<html>
<head>
<script type="text/javascript">
//Пишем функцию которую вызовем
function change()
{
text = ">>><b>Я нашел этот элемент</b><<<";
//Говорим, что когда мы вызовем эту функцию,
//то найдем в документе вызвавший её элемент с id='finde_me'
//и запишем туда новое значение переменной text;
document.getElementById('finde_me').innerHTML=text;
}
</script>
</head>
<body onLoad="change();"><!-- И так... функция change() запустится при загрузке документа (событие onLoad)...-->
<div id='finde_me'>Когда JS найдет этот элемент, текст изменится</div>
<!--...она найдет нужный её элемент с id='finde_me' и запишет туда новое значение переменной text;-->
<div id='other_div'>Этот текст не изменится, это элемент с другим id</div><!-- элемент с другим id её не интересен-->
</body>
</html>

:: готов к употреблению )

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