blob: eb06d11321ccf881afe4c719e28c74ba1b1651ae (
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
52
53
54
55
56
|
---
title: Document.writeln()
slug: Web/API/Document/writeln
tags:
- API
- DOM
- Method
- Reference
translation_of: Web/API/Document/writeln
---
<p>{{ ApiRef("DOM") }}</p>
<p>Écrit une chaine de caractères suivie d'un retour de ligne.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="eval">document.writeln(<em>ligne</em>);
</pre>
<h3 id="Parameters">Paramètres</h3>
<ul>
<li><code>ligne</code> est la chaine de caractère contenant le texte.</li>
</ul>
<h2 id="Example">Exemple</h2>
<pre class="notranslate">document.writeln("<p>Entrez votre mot de passe :</p>");
</pre>
<h2 id="Notes">Notes</h2>
<p><strong>document.writeln </strong>est identique à <a href="/en-US/docs/Web/API/Document/write">{{domxref("document.write")}}</a>, mais ajoute une nouvelle ligne.</p>
<h2 id="Specification">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<td><strong>Spécification</strong></td>
<td><strong>État</strong></td>
</tr>
<tr>
<td>{{SpecName("HTML WHATWG", "#dom-document-writeln", "document.writeln()")}}</td>
<td>{{Spec2("HTML WHATWG")}}</td>
</tr>
<tr>
<td>{{SpecName("DOM2 HTML", "html.html#ID-35318390", "document.writeln()")}}</td>
<td>{{Spec2("DOM2 HTML")}}</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Document.writeln")}}</p>
|