搜索

首页  >  问答  >  正文

HTML 中的换行符为 '\n'

<p>有没有办法让 HTML 正确处理 <code>n</code> 换行符?或者我是否必须将它们替换为 <code><br /></code>?</p> <p><br /></p> <pre class="brush:html;toolbar:false;"><div class="text"> abc def ghi </div></pre> <p><br /></p>
P粉470645222P粉470645222516 天前582

全部回复(2)我来回复

  • P粉345302753

    P粉3453027532023-08-28 10:18:32

    您可以使用 CSS white-space 属性来表示 \n。您还可以保留选项卡,如 \t 中所示。

    对于换行符\n

    white-space: pre-line;

    对于换行符\n和制表符\t

    white-space: pre-wrap;

    document.getElementById('just-line-break').innerHTML = 'Testing 1\nTesting 2\n\tNo tab';
    
    document.getElementById('line-break-and-tab').innerHTML = 'Testing 1\nTesting 2\n\tWith tab';
    #just-line-break {
      white-space: pre-line;
    }
    
    #line-break-and-tab {
      white-space: pre-wrap;
    }
    <div id="just-line-break"></div>
    
    <br/>
    
    <div id="line-break-and-tab"></div>

    回复
    0
  • P粉144705065

    P粉1447050652023-08-28 09:00:04

    这是在 HTML 中显示换行符和回车符。那么你不需要明确地这样做。您可以在 CSS 中通过设置空白属性 pre-line 值来完成此操作。

    <span style="white-space: pre-line">@Model.CommentText</span>
    

    回复
    0
  • 取消回复