Jump to content
  • 0

Как передать объект из одного скрипта другому? (export/import)


fast
 Share

Question

Задача в следующем:

Есть html_1 в нем javascript_1 и с помощью тега iframe вставлен html_2 с javascript_2.

Как передать объект от javascript_1 в javascript_2?

html_1:

<html>
<head>
<script id="javascript_1" type="text/javascript" language="JavaScript 1.2">
var Test = new Object();
Test.index = 777;
alert("index=" + Test.index);
export Test;
</script>
</head>
<body>
<iframe width="50%" height="77" src="html_2.htm" frameborder="yes" scrolling="yes">
</iframe>
</body>
</html>

html_2:

<html>
<head>
<script id="javascript_2" type="text/javascript" language="JavaScript 1.2">
import Test.*;
alert(Test);
</script>
</head>
<body>
</body>
</html>

Как видно я использую export/import, но наверно не так как надо...

Готовых примеров я не нашол. Использую "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.3) Gecko/20070310 Iceweasel/2.0.0.3 (Debian-2.0.0.3-1)".

Заранее благодарен за все делные ответы.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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