谷歌浏览器控制台日志显示一个字符串,其中包含一个箭头是什么字符?

时间:2018-03-26 07:43:53

标签: html5 google-chrome console

我在这里添加了一个带有控制台日志的图像: enter image description here

有人可以帮助我理解手机这个词的末尾是什么箭头吗?

1 个答案:

答案 0 :(得分:1)

Chrome就会在javascript对象的字符串中显示正常不可打印的字符序列CR + LF(回车+换行符)。

有几种方法可以重现这一点,包括:

使用字符串类

的十进制

console.log({field: "phone" + String.fromCharCode(13) + String.fromCharCode(10)});

ASCII hex

console.log({field: "phone" + '\x0d' + '\x0a'});

Unicode hex

console.log({field: "phone" + '\u000d' + '\u000a'});

所以基本上这是一个包含换行符的字符串。