codecamp

Lodash _.unescape

_.unescape([string=''])

_.escape的反向版。 这个方法转换string字符串中的 HTML 实体 &, <, >, ", ', 和 ` 为对应的字符。注意: 不会转换其他的 HTML 实体,需要转换可以使用类似 he 的第三方库。

注意: 不会转换其他的 HTML 实体,需要转换可以使用第三方库,类似he

添加版本

0.6.0

参数

  1. [string=''] (string): 要转换的字符串。

返回

(string): 返回转换后的字符串。

例子

_.unescape('fred, barney, & pebbles');
// => 'fred, barney, & pebbles'


Lodash _.truncate
Lodash _.upperCase
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Lodash 简介

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }