文本区域中的换行<br>符未解释



我非常累=非常愚蠢,但我想继续做早上的第一件事。。。

<div class=' form-group smhTextArea removeForAjax' style='margin-bottom: 10px'>
<div class=''>
<textarea class='form-control message-text-area'  rows='4'
name='message<?= $jj ?>' placeholder='New text box <?= $jj ?>'
id='message<?= $jj ?>' >
ID <?= $jj ?> "n" <br> Msg:<?= $stackContent ?><br>
</textarea>
</div>
</div>

输出为:

ID 1 "n" <br> Msg:4 Mary had a little lamb it's... ??? @ "<br>

我在这里看了很多答案,在谷歌上搜索了一下,但什么也看不到。

如果这应该工作,那么这可能是一个目前格式非常不正确的测试页。

再次抱歉,如果愚蠢但昏倒在这里!

<textarea>元素不呈现HTML,它实际上呈现纯文本,就像它在HTML文件中格式化的那样。这意味着您不必使用<br />标记来开始新行,只需使用常规换行符(按键盘上的回车键(即可。

<textarea>Line 1
Line 2
Line 4
</textarea>

您需要使用CR/LF&#13;&#10;而不是<BR>

<textarea> ID 1 "n" &#13;&#10; Msg:4 Mary had a little lamb it's... ??? @ "</textarea>

相关内容

  • 没有找到相关文章

最新更新