By default, HTML renders newlines as spaces (and multiple whitespace is collapsed to one space). Add this rule to your stylesheet to preserve whitespace...
#logsid {
white-space: pre;
}
Or you can do this in jQuery...
$('#logsid').css("white-space", "pre");
You can also achieve this by changing logsid
to be a <pre>
element.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…