blob: 6939e0bd1fa5ac6b4cddd8957c97c9e088a17b84 (
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
|
---
title: Storage.length
slug: Web/API/Storage/length
translation_of: Web/API/Storage/length
---
<p>{{APIRef("Web Storage API")}}</p>
<p>המאפיין <strong><code>length</code></strong> מאפשר לאחזר את מספר כל הפריטים שנמצאים באחסון המקומי ולהציגם באמצעות מספר שלם.</p>
<h2 id="תחביר">תחביר</h2>
<pre class="syntaxbox">var <em>aLength</em> = <em>Storage</em>.length;</pre>
<h3 id="ערך_חוזר">ערך חוזר</h3>
<p>מספר שלם.</p>
<h2 id="דוגמאות">דוגמאות</h2>
<p>הפונקציה הבאה מוסיפה שלושה פריטים לאחסון המקומי ולאחר מכן מחזירה את מספר כל הפריטים שנמצאים באחסון המקומי:</p>
<pre class="brush: js">function populateStorage() {
localStorage.setItem('bgcolor', 'yellow');
localStorage.setItem('font', 'Helvetica');
localStorage.setItem('image', 'cats.png');
localStorage.length; // should return 3
}</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-length', 'Storage.length')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="תאימות_דפדפן">תאימות דפדפן</h2>
<p>{{Compat("api.Storage.length")}}</p>
|