有简单的 html 里面有 xml:
<html>
<head>
<title>XML Data Islands</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2>
Binding XML Data Islands to Elements</h2>
<xml id="#myXmlDataSource">
<items>
<item id="item1">
<name>Mocha</name>
<type>Coffee</type>
<photo>photos/candles.jpg</photo>
</item>
<item id="item2">
<name>Decaf</name>
<type>Coffee</type>
<photo>photos/teacup.jpg</photo>
</item>
</items>
</xml>
<table datasrc="#myXmlDataSource" border="1">
<thead>
<tr>
<th>
Photo</th>
<th>
Description</th>
<th>
Type</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img datafld="photo"/>
</td>
<td>
<span title= "name"/>
</td>
<td>
<span datafld="type"/>
</td>
</tr>
</tbody>
</table>
</body>
</html>
不幸的是,记录没有显示在表格中。没有图片也没有文字。问题出在哪里?