字符串_.unescape本页总览_.unescape([string=''])_.escape的反向版。 这个方法转换string字符串中的 HTML 实体 &, <, >, ", ', 和 ` 为对应的字符。 注意: 不会转换其他的 HTML 实体,需要转换可以使用类似 he 的第三方库。注意: 不会转换其他的 HTML 实体,需要转换可以使用第三方库,类似he。添加版本0.6.0参数[string=''] (string): 要转换的字符串。返回(string): 返回转换后的字符串。例子_.unescape('fred, barney, & pebbles');// => 'fred, barney, & pebbles'