blob: 8c69f2caa73818af027d66335cefd5fac5666fff (
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
---
{{ ApiRef("DOM") }}
Écrit une chaine de caractères suivie d'un retour de ligne.
## Syntaxe
document.writeln(ligne);
### Paramètres
- `ligne` est la chaine de caractère contenant le texte.
## Exemple
document.writeln("<p>Entrez votre mot de passe :</p>");
## Notes
**document.writeln** est identique à [{{domxref("document.write")}}](/en-US/docs/Web/API/Document/write), mais ajoute une nouvelle ligne.
## Spécifications
<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>
## Compatibilité des navigateurs
{{Compat("api.Document.writeln")}}
|