JavaScript DHTML/Javascript Collections/imports — различия между версиями

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

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

"imports" Example

   <source lang="html4strict">
   

<html> <head> <style type="text/css" id="myStyle"> @import "external.css"; @import "examples.css"; @import "heading.css"; @import "wbex.css"; @import "demo.css"; </style> </head> <body>

Body content.

<script language="JavaScript">

   alert(document.styleSheets(0).imports.length);

</script> </body> </html>


     </source>