HTML中的制表符空间

时间:2013-01-12 04:57:09

标签: javascript html extjs

我想在字符串中使用制表符空间。我提供使用新行的代码。但我不知道如何在字符串中使用制表空间。任何人都可以帮我这个!?

"Warning ! Sorry Cash Pay is less than this  <br/> month\'s installment. Please pay the  <br/> right amount."

2 个答案:

答案 0 :(得分:14)

&#09;是ASCII中的TAB字符。但根据html规范,所有空格字符都将被剥离为单个字符。还有其他空白字符。与&thinsp;&emsp;&ensp;一样,您也可以尝试使用它们。

更新

似乎&emsp;给出了标签大小的间距。请参阅以下

  • a&emsp;b呈现为 a b
  • a&ensp;b呈现为 a b
  • a&thinsp;b呈现为 a b
  • a&nbsp;b呈现为 a b
  • a&#09;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