在JavaScript中,writeln的意思是“換行輸出”,用於向文檔寫入HTML表達式或JavaScript程式碼,並且在每個表達式後寫一個換行符,語法為“document.writeln (exp1,exp2,exp3,....)」。
本教學操作環境:windows10系統、javascript1.8.5版、Dell G3電腦。
javascript中writeln的意思是什麼
#write() 方法可寫入 HTML 運算式或 JavaScript 程式碼。
可列出多個參數(exp1,exp2,exp3,...) ,它們會依序被追加到文件中。
writeln() 方法與 write() 方法作用相同,外加可在每個表達式後寫一個換行符。
語法如下:
document.writeln(exp1,exp2,exp3,...)
exp1表示要寫入的輸出流。它們將按順序被追加到文件中。
範例如下:
<html> <head> <meta charset="utf-8"> <title>123</title> </head> <body> <p>注意write()方法不会在每个语句后面新增一行:</p> <pre class="brush:php;toolbar:false"> <script> document.write("Hello World!"); document.write("Have a nice day!"); </script>
注意writeln()方法在每个语句后面新增一行:
<script> document.writeln("Hello World!"); document.writeln("Have a nice day!"); </script>
以上是javascript中writeln的意思是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!