/*转换XML*/ function ConvertXML(str) { var newStr = str.replace(/</g, '<'); newStr = newStr.replace(/>/g, '>'); return newStr; }