请教js解析xml的问题 - Web 开发 / JavaScript
XML代码:317.xml
<?xml version="1.0" encoding="UTF-8"?>
<ADI>
<Objects>
<Object ElementType="Program" >
<Property Name="Name">大兵小将</Property>
<Property Name="Language">汉语</Property>
</Object>
<Objects>
<Mappings>
<Mapping ParentType="Program">
123
</Mapping>
<Mappings>
</ADI>
js代码:
<html>
<head>
<script type="text/javascript" src="loadxmldoc.js"></script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("317.xml");
x=xmlDoc.getElementsByTagName("Property")[0].childNodes[0];
txt=x.nodeValue;
document.write(txt);
</script>
</body>
</html>
loadxmldoc.js导入xml文档没有问题。
解析出来为何得不到:大兵小将?
如果显示的不是中文,请问该怎么办?
alert(xmlDoc)
看看对象加载成功没有
如果显示的不是中文,请问该怎么办?
将文件另存为utf-8编码
HTML code
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHi
相关问答:
<?xml version="1.0"?>
<root>
<status>433</status>
<msg>这个是汉字</msg>
<serialno>123</serialno>
</root>
如何用ASP读取 status值 ......
我有一个类似的xml的 string,想通过遍历怎么个xml 输出我想要的element的值
xml 为:
<Discover xmlns="urn:schemas-microsoft-com:xml-analysis">
<RequestType>DISCOVER_XML_ME ......
思路:要用c#生成一个播放机的播放列表的xml,例如:
<daty datys='2010-04-05' datye='2010-05-01' > //这是播放的日期段
<time times='01:12:00' timee='02:30:00'> ......
下面是XML初始文件内容
XML code:
<upd:Update xmlns:lar="http://schemas.microsoft.com/msus/2002/12/LogicalApplicabilityRules" xmlns:cmd="http://schemas.microsoft.com/msus/2002/12/Up ......
用SAX解析XML中,使用这段代码
String feed="http://www.google.com/ig/api?weather="+strCity;
URL url = new URL(feed.replace(" ", "%20"));
......