var i;
for(i=10; i>=0; i= i-1){
var s;
for(s=0; s<i; s = s+1){
document.write("*");
}
//i want this to print a new line
/document.write(?);
}
我正在打印星星的金字塔,我无法打印新的线条。
var i;
for(i=10; i>=0; i= i-1){
var s;
for(s=0; s<i; s = s+1){
document.write("*");
}
//i want this to print a new line
/document.write(?);
}
我正在打印星星的金字塔,我无法打印新的线条。
将\n
用于换行符。
document.write("\n");
您也可以拥有多个:
document.write("\n\n\n"); // 3 new lines! My oh my!
但是,如果这是呈现为 HTML,您将需要使用 HTML 标记作为换行符:
document.write("<br>");
Hello\n\nTest
源中的字符串将如下所示:
Hello!
Test
该字符串Hello<br><br>Test
在 HTML 源代码中将如下所示:
Hello<br><br>Test
HTML 将呈现为查看页面的人的换行符,\n
只是将文本放到源中的下一行(如果它在 HTML 页面上)。
怎么样:
document.write ("<br>");
(假设您在 html 页面中,因为单独的换行只会显示为空格)
使用"\n"
:
document.write("\n");
请注意,它必须用双引号括起来才能被解释为换行符。不,它没有。
document.writeln()
是您正在寻找的内容,或者document.write('\n' + 'words')
您是否正在寻找使用新行时的更多粒度