diff options
Diffstat (limited to 'files/he/web/api/storage/getitem/index.html')
-rw-r--r-- | files/he/web/api/storage/getitem/index.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/files/he/web/api/storage/getitem/index.html b/files/he/web/api/storage/getitem/index.html new file mode 100644 index 0000000000..d18fcf9d3d --- /dev/null +++ b/files/he/web/api/storage/getitem/index.html @@ -0,0 +1,75 @@ +--- +title: localStorage.getItem() +slug: Web/API/Storage/getItem +translation_of: Web/API/Storage/getItem +--- +<p>{{APIRef("Web Storage API")}}</p> + +<p> </p> + +<p>פונקציית <strong><code>()getItem</code></strong> מאפשרת לאחזר נתונים מהאחסון המקומי באמצעות שם המפתח.<br> + במידה והמפתח שרוצים לאחזר אינו קיים באחסון המקומי, יוחזר הערך null.</p> + +<h2 id="תחביר">תחביר</h2> + +<pre class="syntaxbox">var <em>aValue</em> = localStorage.getItem(<em>keyName</em>); +</pre> + +<h3 id="פרמטרים">פרמטרים</h3> + +<dl> + <dt><em><code>keyName</code></em></dt> + <dd>שם המפתח אותו רוצים לאחזר.</dd> +</dl> + +<h3 id="ערך_חוזר">ערך חוזר</h3> + +<p>במידה והמפתח קיים באחסון המקומי הוא יחזיר את ערכו. במידה והמפתח אינו קיים יוחזר הערך null.</p> + +<h2 id="דוגמאות">דוגמאות</h2> + +<p>הפונקציה הבאה מאחזרת שלושה פריטי נתונים מהאחסון המקומי ולאחר מכן משתמשת בהם כדי להגדיר גיליונות סגנון מדורגים.</p> + +<pre class="brush: js">function setStyles() { + var currentColor = localStorage.getItem('bgcolor'); + var currentFont = localStorage.getItem('font'); + var currentImage = localStorage.getItem('image'); + + currentColor = document.getElementById('bgcolor').value; + currentFont = document.getElementById('font').value; + currentImage = document.getElementById('image').value; + + htmlElem.style.backgroundColor = '#' + currentColor; + pElem.style.fontFamily = currentFont; + imgElem.setAttribute('src', currentImage); +}</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-getitem', 'Storage.getItem')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="תאימות_דפדפן">תאימות דפדפן</h2> + + + +<p>{{Compat("api.Storage.getItem")}}</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/removeItem">()Storage.removeItem</a></li> +</ul> |