Javascript警告Google Chrome中的Wierd字体

时间:2015-09-02 08:42:59

标签: javascript google-chrome fonts alert

我们在javascript alert()弹出窗口中输出了一条纯文本消息,表明我们的系统存在表单错误。出于某种原因,谷歌浏览器会以奇怪的字体显示部分内容,如下图所示。

Image of Weird Font

有谁知道为什么?

明文是:

"___________________________________________________________________

The form was not submitted because of the following error(s).
Please correct these error(s) and re-submit the form.
___________________________________________________________________

- The following required field(s) are empty:
    Title
    Company
"

1 个答案:

答案 0 :(得分:2)

当某个行前面有一个标签(\t

时,Google Chrome似乎会在某些操作系统上执行此操作

enter image description here

alert("Normal text\r\n\tPreceeded by a tab");

这是超级奇怪的行为 - 没有其他浏览器这样做。

至少它不是6 year old bug oh.wait.fail!