Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Document.writeln()

Esta tradução está incompleta. Ajude atraduzir este artigo.

Grava uma seqüência de texto, seguido por um caractere de nova linha a um documento.

Sintaxes

document.writeln(line); 

Parâmetros

  • line
    é uma string contendo uma linha de texto.

Exemplo

document.writeln("<p>enter password:</p>"); 

Notas

document.writeln é o mesmo que document.write mas acrescenta uma nova linha.

Note: document.writeln (like document.write) does not work in XHTML documents (you'll get a "Operation is not supported" (NS_ERROR_DOM_NOT_SUPPORTED_ERR) error on the error console). This is the case if opening a local file with a .xhtml file extension or for any document served with an application/xhtml+xml MIME type. More information is available in the W3C XHTML FAQ.

Especificação

writeln

Etiquetas do documento e colaboradores

 Colaboradores desta página: teoli, jsx, Nathalino_Pacheco
 Última atualização por: teoli,