2014-03-01 65 views

回答

8

一種方式是手工所有可能的空白字符替換:

var html = '\n\t'; 
console.log(html); // displays whitespace 
console.log(html.replace(/\n/g,'\\n').replace(/\t/,'\\t')); // displays '\n\t' 

相當繁瑣的,我知道。

2

您還可以使用JSON.stringify

const data = 'name\tvalue\n' 

console.log(JSON.stringify(data)) 

// "name\tvalue\n" 
相關問題