blob: 5760eae6b3214e69e880b122d3c40c8f2b63ea4b (
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
|
---
title: Storage.removeItem()
slug: Web/API/Storage/removeItem
translation_of: Web/API/Storage/removeItem
---
<p>{{APIRef("Web Storage API")}}</p>
<p>פונקציית <strong><code>()removeItem</code></strong> מאפשרת לאחזר נתונים מהאחסון המקומי באמצעות שם המפתח.<br>
ובמידה ושם המפתח לא קיים באחסון המקומי לא יבוצעו שינויים.</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>שם המפתח אותו רוצים למחוק.</dd>
</dl>
<h3 id="ערך_חוזר">ערך חוזר</h3>
<p>חלל ריק.</p>
<h2 id="דוגמאות">דוגמאות</h2>
<p>הפונקציה הבאה יוצרת שלושה פריטים בתוך האחסון המקומי ולאחר מכן מסירה את פריט התמונה מהאחסון המקומי.</p>
<pre class="brush: js">function populateStorage() {
localStorage.setItem('bgcolor', 'red');
localStorage.setItem('font', 'Helvetica');
localStorage.setItem('image', 'myCat.png');
localStorage.removeItem('image');
}</pre>
<h2 id="מפרט">מפרט</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'webstorage.html#dom-storage-removeitem', 'Storage.removeItem')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="תאימות_דפדפן">תאימות דפדפן</h2>
<p>{{Compat("api.Storage.removeItem")}}</p>
<h2 id="ראו_גם">ראו גם</h2>
<ul>
<li><a href="https://developer.mozilla.org/he/docs/Web/API/Storage/setItem">()Storage.setItem </a></li>
<li><a href="/he/docs/Web/API/Storage/getItem">()Storage.getItem</a></li>
</ul>
|