diff options
Diffstat (limited to 'files/he/web/api/storage/removeitem/index.html')
-rw-r--r-- | files/he/web/api/storage/removeitem/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/files/he/web/api/storage/removeitem/index.html b/files/he/web/api/storage/removeitem/index.html new file mode 100644 index 0000000000..5760eae6b3 --- /dev/null +++ b/files/he/web/api/storage/removeitem/index.html @@ -0,0 +1,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> |