var html = '\n\t'; console.log(html); // displays whitespace console.log(html.replace(/\n/g,'\\n').replace(/\t/,'\\t')); // displays '\n\t'
相当乏味,我知道.