JavaScript Tutorial/Global/import

Материал из Web эксперт
Версия от 08:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

import

The import keyword allows a script to import properties, functions, and objects from a signed script that has exported the information.



<html>
    <body>
    <script language = "JavaScript">
    <!--
    // imports the variables name, city and state from another script.
    // This makes those properties accessible to myObj.
    import myObj.name;
    import myObj.city;
    import myObj.state;
    -->
    </script>
    </body>
    </html>