我想在字符串中使用制表符空间。我提供使用新行的代码。但我不知道如何在字符串中使用制表空间。任何人都可以帮我这个!?
"Warning ! Sorry Cash Pay is less than this <br/> month\'s installment. Please pay the <br/> right amount."
答案 0 :(得分:14)
	
是ASCII中的TAB字符。但根据html规范,所有空格字符都将被剥离为单个字符。还有其他空白字符。与 
, 
和 
一样,您也可以尝试使用它们。
似乎 
给出了标签大小的间距。请参阅以下
a b
呈现为 a b a b
呈现为 a b a b
呈现为 a b a b
呈现为 a b a	b
呈现为 a b 答案 1 :(得分:0)
如果将字符串放在HTML <pre>
元素中,则它可以具有制表符。设置为放入"Warning! \t error"
的innerHTML中的字符串<pre id="output"></pre>
将产生
:Warning! error
。
另请参见:
https://stackoverflow.com/questions/4631646/how-to-preserve-whitespace-indentation-of-text-enclosed-in-html-pre-tags-exclu