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

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

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

Get cssText

<html>
    <head>
        <title>Style Example</title>
    </head>
    <body>
        <P>Click on the square.</p>
        <div id="div1"
             style="background-color: red; height: 50px; width: 50px"
             onclick="alert(this.style.cssText)"></div>
    </body>
</html>