在Firefox上的html()事件期间换行

时间:2013-09-12 07:27:58

标签: jquery firefox

enter image description here

我正在尝试在单击其他元素时更改元素上的文本。这在Chrome上工作正常,但在Firefox中,该事件迫使最后一个字在第一行之前暂时进入第二行。

我不知道为什么会这样。我使用的代码是:

  

$( 'arrow_box。')HTML(的getMessage();

其中getMessage()只是从数组中检索文本。

有谁知道为什么会这样?

2 个答案:

答案 0 :(得分:3)

你可以使用CSS

来防止这种情况
.arrow_box{
  white-space: nowrap;
}

有关white-space属性

的更多信息,请参阅https://developer.mozilla.org/en-US/docs/Web/CSS/white-space

答案 1 :(得分:0)

尝试设置

.arraw_box { 
    white-space: nowrap
}