scenario: need to display raw xml,
what does text() method do:
<> converted to <> i.e. 把操作符号编码为html编码
显示原始html的方法,
function htmlEncode(xml){
//1.to htmlencode
//2. display html
return $("<div />").text(xml).html();
}