HTML DOM write() 方法


HTML DOM write() 方法


#定義與用法


write() 方法可寫入文件入HTML 表達式或JavaScript 程式碼。

語法

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

參數描述
#exp1,exp2,exp3,...可選。要寫入的輸出流。多個參數可以列出,他們將按出現的順序被追加到文檔中


瀏覽器支援

QQ截图20161108165429.png

#所有主要瀏覽器都支援write() 方法


實例

實例

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

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

</body>
</html>

運行實例»點擊"運行實例"按鈕查看線上實例


#實例2


實例

<!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>

運行實例»點擊"運行實例"按鈕查看線上實例




#實例3

實例
#
<!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>

執行實例»

點擊"運行實例" 按鈕查看線上實例





####