Jump to content
  • 0

Загрузка через JS


Artlive
 Share

Question

Всем привет!

Есть вопрос, видимо, ламерский, но я и не спец.

Проблема: загрузить нечто внутри страницы после загрузки ее основной части.

Т.е.: загрузить (т.е. не показать, а именно начать загружать) нечто вверху страницы уже после того, как загрузилась середина и низ. Слои и прочий css не годится, т.к. позиция не абсолютная и не одинаковая для каждой из страниц. Видимо, JS ? единственный вариант.

Знаю теорию: в нужное место вывести:

Загружается, подождите...

а уже в самом-самом низу, перед

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

<html>
<head>

<script>

function write_cont( cont )
{
document.getElementById('some_cont').innerHTML = cont;
}

</script>

</head>
<body>

<div id="some_cont"></div>

text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text

<script src="somejs.js"></script>
</body>
</html>

файл somejs.js:

write_cont("This div must contein some cont!");

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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