blob: 9754516cf3c967973868b19151565626f6eed6e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
---
title: CSSStyleSheet.deleteRule()
slug: Web/API/CSSStyleSheet/deleteRule
tags:
- API
- CSSOM
- CSSStyleSheet
- Method
- Reference
translation_of: Web/API/CSSStyleSheet/deleteRule
---
<p>{{APIRef("CSSOM")}}</p>
<p><code><strong>CSSStyleSheet.deleteRule()</strong></code> メソッドは、スタイル規則を現在のスタイルシートオブジェクトから削除します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">stylesheet.deleteRule(<em>index</em>)
</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<ul>
<li><code>index</code> は、規則の位置を表す倍精度整数値。</li>
</ul>
<h3 id="戻り値">戻り値</h3>
<p><em>無効。</em></p>
<h2 id="Example" name="Example">例</h2>
<pre class="brush:js"> myStyles.deleteRule(0);
</pre>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th>仕様書</th>
<th>策定状況</th>
<th>備考</th>
</tr>
<tr>
<td>{{SpecName("CSSOM", "#dom-cssstylesheet-deleterule", 'CSSStyleSheet.deleteRule()')}}</td>
<td>{{Spec2("CSSOM")}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName("DOM2 Style", "css.html#CSS-CSSStyleSheet-deleteRule", "CSSStyleSheet.deleteRule()")}}</td>
<td>{{Spec2("DOM2 Style")}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの実装状況</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>機能</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>基本サポート</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>9.0</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>機能</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>基本サポート</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<h3 id="従来のブラウザーのサポート">従来のブラウザーのサポート</h3>
<ul>
<li>
<h4 id="Internet_Explorer_-_pre_v9"><strong>Internet Explorer - pre v9</strong></h4>
<strong>removeRule</strong>([<em>index</em>]); -- 例:<code> removeRule(); // 最初の規則を削除</code><br>
<br>
{{domxref("CSSStyleSheet.insertRule","insertRule()")}} と {{domxref("CSSStyleSheet",".cssRules")}} の代わりとなる非標準の <code><a class="external" href="http://www.quirksmode.org/dom/w3c_css.html#change">addRule()</a></code> と <code><a class="external" href="http://www.quirksmode.org/dom/w3c_css.html#access">.rules</a></code> にも注意してください。</li>
</ul>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("CSSStyleSheet.insertRule")}}</li>
<li><a class="external" href="http://www-archive.mozilla.org/docs/web-developer/css1technote/css1tojs.html#priority">Cross-Browser CSS-rules ordering (CSS1)</a></li>
<li><a class="external" href="http://www.quirksmode.org/dom/w3c_css.html">Quirksmode - CSS</a></li>
</ul>
|