JavaScript. Mанипуляция страницами.

User avatar
wolfboy
Уже с Приветом
Posts: 1224
Joined: 24 Feb 2003 07:40

JavaScript. Mанипуляция страницами.

Post by wolfboy »

Как скопировать одну страницу в тело другой .

first.html
"
<H1>"Hie, privet,first page"</H1>
privet,privet
"
second.html
<html>
<body>
<h1>Second page</h1>
<script>
<!--some manipulations with first.html-->
...
</script>
</body>
<html>

result
<html>
<body>
<h1>Second page</h1>

<H1>"Hie, privet,first page"</H1>
privet,privet

</body>
<html>

Спасибо.

Return to “Вопросы и новости IT”