有时候后台返回的数据中有字符串,并需要将字符串转化为HTML,下面封装了一个方法,如下 // html转义 function htmlspecialchars_decode(string, quote_style) { var optTemp = 0 , i = 0 , noquotes = false; if (typeof quote_style === 'undefined') { quote_style = 2; } string = string.toString().replace(…