JavaScript Reference/Javascript Methods/removeRule

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

"removeRule()" Example

    
<html>
<body>
<style>.myClass {background-color:red; font-decoration:bold;}</style>
<script language="JavaScript">
    function function1() {
        document.styleSheets[0].removeRule(0);
    }
</script>
<button id="myB" onclick="function1();" class="myClass">Remove rule</button>
</body>
</html>



"removeRule()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |styleSheet                                                    |
+----------------+--------------------------------------------------------------+



"removeRule()" Syntax, Parameters and Note

Note:
Removes a rule from the specified style sheet.
    
Syntax:
    
document.styleSheets[index].removeRule(param1)
Parameters:
    param1   Optional; the index of the rule within the rules collection.