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
|
---
title: HTMLStyleElement.media
slug: Web/API/HTMLStyleElement/media
tags:
- API
- HTML DOM
- HTMLStyleElement
- Media
- プロパティ
- リファレンス
translation_of: Web/API/HTMLStyleElement/media
---
<div>{{APIRef("HTML DOM")}}</div>
<p><strong><code>HTMLStyleElement.media</code></strong> プロパティは、スタイル情報の対象と想定するメディアを指定します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>medium</var> = style.media
style.media = <var>medium</var>
</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<ul>
<li><code>medium</code> は単一のメディア又はコンマで区切られたリストを記述する文字列です。</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: html"><!doctype html>
<html>
<head>
<link id="LinkedStyle" rel="stylesheet" href="document.css" type="text/css" media="screen" />
<style id="InlineStyle" rel="stylesheet" type="text/css" media="screen, print">
p { color: blue; }
</style>
</head>
<body>
<script>
alert('LinkedStyle: ' + document.getElementById('LinkedStyle').media); // 'screen'
alert('InlineStyle: ' + document.getElementById('InlineStyle').media); // 'screen, print'
</script>
</body>
</html>
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', "semantics.html#attr-style-media", "HTMLStyleElement")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5.1', "semantics.html#attr-style-media", "HTMLStyleElement")}}</td>
<td>{{Spec2('HTML5.1')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', "semantics.html#attr-style-media", "HTMLStyleElement")}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM2 HTML', 'html.html#ID-16428977', 'HTMLStyleElement')}}</td>
<td>{{Spec2('DOM2 HTML')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM1', 'level-one-html.html#ID-16428977', 'HTMLStyleElement')}}</td>
<td>{{Spec2('DOM1')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("api.HTMLStyleElement.media")}}</p>
|