在jQuery $.get之后,我收到一些数据,我希望能够看到所有不可见的字符,如空格,制表符,行尾或新行.可以在Chrome控制台看到这个吗?怎么样?
一种
方法是手动替换所有可能的空格字符:
var html = '\n\t';
console.log(html); // displays whitespace
console.log(html.replace(/\n/g,'\\n').replace(/\t/,'\\t')); // displays '\n\t'
相当乏味,我知道.
原文链接:https://www.f2er.com/js/155255.html