我正在使用String.fromCharCode
將新行(或)回車添加到我的html文本中。使用fromCharCode的HTML換行符不起作用
很是喜歡,
"Ant the other line here..." + String.fromCharCode(13)
的jsfiddle是@http://jsfiddle.net/udmfsvfn/
但是,沒有換行符在頁面中加入!
我正在使用String.fromCharCode
將新行(或)回車添加到我的html文本中。使用fromCharCode的HTML換行符不起作用
很是喜歡,
"Ant the other line here..." + String.fromCharCode(13)
的jsfiddle是@http://jsfiddle.net/udmfsvfn/
但是,沒有換行符在頁面中加入!
如果您想在HTML中換行,您需要提供<br>
實體而不是換行符(您的String.fromCharCode(13)
代碼),因爲HTML將文本中的換行符解釋爲常用空格。