diff options
Diffstat (limited to 'files/pl/web/api/document/images')
-rw-r--r-- | files/pl/web/api/document/images/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/files/pl/web/api/document/images/index.html b/files/pl/web/api/document/images/index.html new file mode 100644 index 0000000000..e7d21794da --- /dev/null +++ b/files/pl/web/api/document/images/index.html @@ -0,0 +1,31 @@ +--- +title: document.images +slug: Web/API/Document/images +tags: + - DOM + - Dokumentacja_Gecko_DOM + - Gecko + - Wszystkie_kategorie +translation_of: Web/API/Document/images +--- +<p>{{ ApiRef() }}</p> +<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3> +<p><code>document.images</code> zwraca listę obrazków w dokumencie.</p> +<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3> +<pre class="eval"><em>listaWęzłów</em> = document.images +</pre> +<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3> +<pre class="eval">var ilist = document.images; +for(var i = 0; i < ilist.length; i++) { + if(ilist[i] == "banner.gif") { + // found the banner + } +} +</pre> +<p> </p> +<h3 id="Uwagi" name="Uwagi">Uwagi</h3> +<p><code>document.images.length</code> – własność, zwraca liczbę obrazków na stronie.</p> +<p><code>document.images</code> jest częścią DOM HTML i działa tylko dla dokumentów HTML.</p> +<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3> +<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-90379117">DOM Level 2 HTML: HTMLDocument.images</a></p> +<p>{{ languages( { "ru": "ru/DOM/document.images", "en": "en/DOM/document.images", "fr": "fr/DOM/document.images" } ) }}</p> |