-3

我的 JS 有问题,每当我在脚本标签中写“\n”时,它不会打印新行。我是 Javascript 新手,所以有人可以向我解释问题是什么吗?

这是我练习的代码:

<html>
<head>
  <meta charset="utf-8">
  <script>
    var output;
    var number = window.prompt("Enter mobile no:  \n");
    if( number>10000000 && number<99999999){
     var ps = parseInt(number/1000000);
     var vs = parseInt((number/1000)%1000);
     var ts = number%1000;
     output = "0" + ps + "/" + vs + "-" + ts +" ";
      document.write("Mobile no. is : " + output + " "  + "\n");


   if( ps == 70 || ps == 71 || ps == 72 ){
      document.write("Mobile no. is T-Mobile " + "\n");
   }
   if( ps == 75 || ps == 76){
      document.write("Mobile no. is One " + "\n");
   }
   if( ps == 77 || ps == 78){
      document.write("Mobile no. is Vip " + "\n");
   }

    }
  </script>

</head>

<body>

//not important

</body>
</html>
4

3 回答 3

6

您正在输出到浏览器,因此 HTML 是相关的,而不是纯文本。只需将“\n”替换为“ <br>”。

于 2018-05-29T19:30:27.483 回答
3

您正在将 HTML 写入页面。它不识别新行。您需要使用“ <br>”标签。

于 2018-05-29T19:30:54.097 回答
1

如果您正在编写 .html 文件,请使用<br>如下标记:

document.write("<br>");

否则,您可以使用"\n".

于 2019-01-26T16:39:10.780 回答