JavaScript Tutorial/Document/domain — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:24, 26 мая 2010

document.domain

The domain property initially contains the hostname of the server from which the document was loaded.



<html>
    <script>
    <!--
    document.write("The domain: ",document.domain);
    -->
    </script>
    </html>