aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/document/writeln/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/document/writeln/index.html')
-rw-r--r--files/pl/web/api/document/writeln/index.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/files/pl/web/api/document/writeln/index.html b/files/pl/web/api/document/writeln/index.html
new file mode 100644
index 0000000000..f70d4f72a4
--- /dev/null
+++ b/files/pl/web/api/document/writeln/index.html
@@ -0,0 +1,41 @@
+---
+title: document.writeln
+slug: Web/API/Document/writeln
+tags:
+ - DOM
+ - Wszystkie_kategorie
+translation_of: Web/API/Document/writeln
+---
+<p id="Summary">{{APIRef("DOM")}}</p>
+
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+
+<p>Zapisuje w dokumencie ciąg tekstu, a po nim znak nowej linii.</p>
+
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+
+<pre class="eval">document.writeln(<i>linia</i>)
+</pre>
+
+<h3 id="Parametry" name="Parametry">Parametry</h3>
+
+<ul>
+ <li><code>linia</code> jest ciągiem zawierającym wiersz tekstu do wpisania.</li>
+</ul>
+
+<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
+
+<pre>document.writeln("&lt;p&gt;podaj hasło:&lt;/p&gt;");
+</pre>
+
+<h3 id="Uwagi" name="Uwagi">Uwagi</h3>
+
+<p><b>document.writeln</b> nie różni się niczym od <a href="pl/DOM/document.write">document.write</a>, poza tym, że dodaje na końcu znak nowego wiersza.</p>
+
+<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
+
+<p><a class="external" href="http://www.w3.org/TR/2000/WD-DOM-Level-2-HTML-20001113/html.html#ID-35318390">writeln </a></p>
+
+<div class="noinclude"> </div>
+
+<p>{{ languages( { "en": "en/DOM/document.writeln", "ja": "ja/DOM/document.writeln" } ) }}</p>