blob: 6fff08958a07833665e7658035b52408cd7190b1 (
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
|
---
title: Storage
slug: Web/API/Storage
tags:
- API
- Interface
- Reference
- Storage
- Web Storage
- data
translation_of: Web/API/Storage
---
<p>{{APIRef("Web Storage API")}}</p>
<p>Web Storage API の <code>Storage</code> インターフェイスは、特定のドメインのセッションストレージまたはローカルストレージへのアクセス機能を提供して、例えば保存されているデータアイテムを追加、変更、削除することができます。</p>
<p>ドメインのセッションストレージを操作したい場合は、{{domxref("Window.sessionStorage")}} メソッドを呼び出してください。ドメインのローカルストレージを操作したい場合は、{{domxref("Window.localStorage")}} を呼び出してください。</p>
<h2 id="Properties" name="Properties">プロパティ</h2>
<dl>
<dt>{{domxref("Storage.length")}} {{readonlyInline}}</dt>
<dd><code>Storage</code> オブジェクトに保存されているデータアイテムの数を表す整数を返します。</dd>
</dl>
<h2 id="Methods" name="Methods">メソッド</h2>
<dl>
<dt>{{domxref("Storage.key()")}}</dt>
<dd>このメソッドは数値 n を渡すと、ストレージ内で n 番目のキーの名称を返します。</dd>
</dl>
<dl>
<dt>{{domxref("Storage.getItem()")}}</dt>
<dd>キーの名称を渡すと、キーに対する値を返します。</dd>
<dt>{{domxref("Storage.setItem()")}}</dt>
<dd>キーの名称と値を渡すと、ストレージにキーを追加する、または既存のキーに対する値を更新します。</dd>
<dt>{{domxref("Storage.removeItem()")}}</dt>
<dd>キーの名称を渡すと、ストレージからキーを削除します。</dd>
<dt>{{domxref("Storage.clear()")}}</dt>
<dd>このメソッドを呼び出すと、ストレージからすべてのキーを消去します。</dd>
</dl>
<h2 id="Examples" name="Examples">例</h2>
<p>ここでは、<code>localStorage</code> を呼び出して <code>Storage</code> オブジェクトにアクセスしています。始めに <code>!localStorage.getItem('bgcolor')</code> というコードを使用して、ローカルストレージにデータアイテムが含まれているかを確認します。含まれている場合は、{{domxref("Storage.getItem()")}} を使用してデータアイテムを取得して、さらにそのデータを使用してページのスタイルを更新する <code>setStyles()</code> 関数を実行します。含まれていない場合は <code>populateStorage()</code> 関数を実行します。こちらは {{domxref("Storage.setItem()")}} を使用してアイテムの値を設定してから、<code>setStyles()</code> を実行します。</p>
<pre class="brush: js">if(!localStorage.getItem('bgcolor')) {
populateStorage();
}
setStyles();
function populateStorage() {
localStorage.setItem('bgcolor', document.getElementById('bgcolor').value);
localStorage.setItem('font', document.getElementById('font').value);
localStorage.setItem('image', document.getElementById('image').value);
}
function setStyles() {
var currentColor = localStorage.getItem('bgcolor');
var currentFont = localStorage.getItem('font');
var currentImage = localStorage.getItem('image');
document.getElementById('bgcolor').value = currentColor;
document.getElementById('font').value = currentFont;
document.getElementById('image').value = currentImage;
htmlElem.style.backgroundColor = '#' + currentColor;
pElem.style.fontFamily = currentFont;
imgElem.setAttribute('src', currentImage);
}</pre>
<div class="note">
<p><strong>注意</strong>: 完全に動作する例として実行する様子を見るために、<a href="https://github.com/mdn/web-storage-demo">Web Storage Demo</a> をご覧ください。</p>
</div>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">策定状況</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'webstorage.html#the-storage-interface', 'Storage')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>and send us a pull request.</p>
</div>
<p>{{Compat("api.Storage")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Web Storage API を使用する</a></li>
</ul>
|