kaedah tulis() HTML DOM


HTML DOM write() Kaedah


Definisi dan Penggunaan


kaedah write() boleh menulis ke dokumen Masukkan ungkapan HTML atau kod JavaScript.

Sintaks

document.write(exp1,exp2,exp3,...)

ParameterPenerangan< /th>
参数描述
exp1,exp2,exp3,...可选。要写入的输出流。多个参数可以列出,他们将按出现的顺序被追加到文档中
exp1,exp2,exp3,...
Pilihan. Strim output untuk menulis. Berbilang parameter boleh disenaraikan dan ia akan dilampirkan pada dokumen mengikut susunan yang dipaparkan

Sokongan penyemak imbas

QQ截图20161108165429.png

Semua pelayar utama menyokong kaedah write()

Instance

Instance
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<script>
document.write("Hello World!");
</script>

</body>
</html>

Jalankan Instance»

Klik butang "Run Instance" untuk melihat contoh dalam talian


Instance 2

Instance
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<script>
document.write("<h1>Hello World!</h1><p>Have a nice day!</p>");
</script>

</body>
</html>

Run Instance»

Klik butang "Run Instance" untuk melihat contoh dalam talian




Instance 3

Instance
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<p>注意write()方法不会在每个语句后面新增一行:</p>
<pre>
<script>
document.write("Hello World!");
document.write("Have a nice day!");
</script>
</pre>
<p>注意writeln()方法在每个语句后面新增一行:</p>
<pre>
<script>
document.writeln("Hello World!");
document.writeln("Have a nice day!");
</script>
</pre>

</body>
</html>

Running Instance»

Klik butang "Run Instance" untuk melihat contoh dalam talian





< 🎜>