2012年9月11日

JS将XML转换成普通文本

摘要: /*转换XML*/function ConvertXML(str) { var newStr = str.replace(/</g, '<'); newStr = newStr.replace(/>/g, '>'); return newStr;} 阅读全文

posted @ 2012-09-11 18:56 HelloHongfu 阅读(318) 评论(0) 推荐(0) 编辑

导航