javascript 实现htmlEncode htmlDecode


屌屌的写法。。 function htmlEncode(value){
//create a in-memory div, set it's inner text(which jQuery automatically encodes)
//then grab the encoded contents back out. The div never exists on the page.
return $('<div/>').text(value).html();
} function htmlDecode(value){
return $('<div/>').html(value).text();
}
上一篇:PHP实现文本快速查找 - 二分查找


下一篇:Zookeeper的实际应用