blob: 05d9ff818ab9c3b23847e349cc70629dfecf54af (
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
|
---
title: Storage.removeItem()
slug: Web/API/Storage/removeItem
tags:
- 메소드
- 스토리지
- 웹 스토리지
- 참고
translation_of: Web/API/Storage/removeItem
---
<p>{{APIRef("Web Storage API")}}</p>
<p>{{domxref("Storage")}} 인터페이스의 removeItem() 메소드에 키 이름을 파라미터로 전달하면 스토리지에서 해당 키를 삭제합니다.</p>
<h2 id="문법">문법</h2>
<pre class="syntaxbox"><em>storage</em>.removeItem(<em>keyName</em>);</pre>
<h3 id="파라미터">파라미터</h3>
<dl>
<dt><em><u>keyName</u></em></dt>
<dd>삭제하고자 하는 키 이름({{domxref("DOMString")}}).</dd>
</dl>
<h3 id="반환값">반환값</h3>
<p><em>반환값 없음.</em></p>
<h2 id="예제">예제</h2>
<p>아래의 함수는 로컬 스토리지에 3 개의 데이터 아이템을 생성한 후 그 중 하나를 삭제합니다.</p>
<pre class="brush: js">function populateStorage() {
localStorage.setItem('bgcolor', 'red');
localStorage.setItem('font', 'Helvetica');
localStorage.setItem('image', 'myCat.png');
localStorage.removeItem('image');
}</pre>
<div class="note">
<p><strong>주</strong>: 실 사용 예제는 <a href="https://github.com/mdn/web-storage-demo">Web Storage Demo</a>를 참고하시기 바랍니다.</p>
</div>
<h2 id="사양">사양</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">사양</th>
<th scope="col">상태</th>
<th scope="col">비고</th>
</tr>
<tr>
<td>{{SpecName('Web Storage', '#dom-storage-removeitem', 'removeItem()')}}</td>
<td>{{Spec2('Web Storage')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.Storage.removeItem")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<p><a href="/en-US/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Web Storage API 사용하기</a></p>
|