blob: 40beeca185bd8a3009315e77f1f1732b7a852a79 (
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
|
---
title: String.prototype.small()
slug: Web/JavaScript/Reference/Global_Objects/String/small
tags:
- Deprecated
- HTML wrapper methods
- JavaScript
- Method
- Prototype
- Reference
- String
- Polyfill
browser-compat: javascript.builtins.String.small
translation_of: Web/JavaScript/Reference/Global_Objects/String/small
---
<div>{{JSRef}} {{deprecated_header}}</div>
<p><strong><code>small()</code></strong> メソッドは、文字列が小さなフォントで表示されるように HTML の {{HTMLElement("small")}} 要素を生成します。</p>
<h2 id="Syntax">構文</h2>
<pre class="brush: js">small()</pre>
<h3 id="Return_value">返値</h3>
<p>HTML の {{HTMLElement("small")}} 要素を含む文字列です。</p>
<h2 id="Description">解説</h2>
<p><code>small()</code> メソッドは、文字列を <code><small></code> 要素の中に、 "<code><small>str</small></code>" のように埋め込みます。</p>
<h2 id="Examples">例</h2>
<h3 id="Using_small">small() の使用</h3>
<p>以下の例では文字列のメソッドを使用して、文字列の大きさを変更しています。</p>
<pre class="brush: js">var worldString = 'Hello, world';
console.log(worldString.small()); // <small>Hello, world</small>
console.log(worldString.big()); // <big>Hello, world</big>
console.log(worldString.fontsize(7)); // <font size="7">Hello, world</fontsize>
</pre>
<p>{{domxref("HTMLElement/style", "element.style")}} オブジェクトを使用すると、要素の <code>style</code> 属性を使用して、次のようにもっと汎用的に操作することができます。</p>
<pre class="brush: js">document.getElementById('yourElemId').style.fontSize = '0.7em';
</pre>
<h2 id="Specifications">仕様書</h2>
{{Specifications}}
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li><code>String.prototype.small</code> のポリフィルは <a href="https://github.com/zloirock/core-js#ecmascript-string-and-regexp"><code>core-js</code></a> で利用できます</li>
<li>{{jsxref("String.prototype.fontsize()")}}</li>
<li>{{jsxref("String.prototype.big()")}}</li>
</ul>
|