如何在 Javascript 中的 console.log() 中插入介绍

How to insert an intro in console.log() in Javascript

我想使用 console.log() 打印一些文本。我有几行,每行我都使用了 console.log()。我想创建 2 个段落。我该怎么做?谢谢

 console.log("1 : Lister les contacts"); //paragraph 1
 console.log("2 : Ajouter un contact");  //paragraph 1
 console.log("0 : Quitter");  //paragraph 1
 console.log("Choisissez une option :")); //paragraph 2
 
 

console.log("1 : Lister les contacts"); //paragraph 1
console.log("2 : Ajouter un contact");  //paragraph 1
console.log("0 : Quitter");  //paragraph 1
console.log("\n\nChoisissez une option :"); //paragraph 2​

console.log("1 : Lister les contacts"); //paragraph 1
console.log("2 : Ajouter un contact"); //paragraph 1
console.log("0 : Quitter"); //paragraph 1
console.log(""); //paragraph 1
console.log("Choisissez une option :"); //paragraph 2

或者您可以使用 \n 来换行并使用两次 \n\n 来换行:

console.log("   p1 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. \n\n   p2 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. ");

\n是换行,\t是制表符(缩进)。此外,您可以 "concatenate" 字符串(基本上将它们加在一起。

var paragraph1 = "1 : Lister les contacts\n";
paragraph1 = paragraph1 + "2 : Ajouter un contact\n";
paragraph1 = paragraph1 + "0 : Quitter\n");
var paragraph2 = "Choisissez une option :";

console.log(paragraph1 + "\n" + paragraph2);

这将导致您显示的内容没有缩进,并且段落之间有一条线。注意:单独的 console.log() 调用总是在不同的行上,因此将它们保存在单独的控制台日志中,最后不需要 \n

此外,您可以在列表中每一行的开头添加一个 \t 以帮助将其稍微分开。

您可以在行与行之间使用 \r\n 来添加一个新行,以便一次调用 console.log 打印前 3 行。

//paragraph 1
console.log("1 : Lister les contacts\r\n2 : Ajouter un contact\r\n0 : Quitter");
//paragraph 2
console.log("Choisissez une option :"); //paragraph 2

您在最后 console.log() 也有一个额外的 )

您可以为多行字符串使用模板文字。模板文字由反引号分隔:

console.log(`1 : Lister les contacts
2 : Ajouter un contact  
0 : Quitter
         
         `);   //paragraph 1
         
console.log('Choisissez une option :');   //paragraph 2

我是讲法语的人,我想你想要这样的东西。你就是不知道怎么解释。

<form role="form" class="form-horizontal">
    <fieldset>
      <div class="form-group">
        <label class="label">Choisissez une option :</label>
        <div class="select">
            <select class="myoptions">
                <option value="1">1 : Lister les contacts</option>
                <option value="2">2 : Ajouter un contact</option>
                <option value="3">0 : Quitter</option>
            </select>
        </div>
      </div>
    </fieldset>
</form>