首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

求教: XML数据岛的嵌套显示有关问题

2012-03-16 
求教: XML数据岛的嵌套显示问题我的xml数据文件(kg.xml)如下:XML code?xml version1.0 encodingUTF-

求教: XML数据岛的嵌套显示问题
我的xml数据文件(kg.xml)如下:

XML code
<?xml version="1.0" encoding="UTF-8"?><resume>    <name>mike</name>    <union>      <char>8</char>      <int>32</int>      <short>16</short>    </union></resume>


然后my.html包含它:
HTML code
<html><body><XML id="myds" src="kg.xml"></XML><table datasrc="#myds"><tr><td><span datafld="name"/></span></td><td><span datafld="short"/></span></td></tr></table></body></html>


但是显示出来的结果只有一个"mike",没有把union里面的short显示出来。我把html里面的内容改为了
datafld="union/short"一样没有任何显示。

应当如何修改呢? 谢谢指点!!!

[解决办法]
<html>
<body>
<XML id="resume" src="kg.xml"></XML>
<table datasrc="#resume">
<tr>
<td><span datafld="name"></span></td>
<td><span datafld="short"></span></td>
</tr>
</table>
</body>
</html>
这样应该可以。

热点排行