案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<xml id="cdcat" src="/example/xmle/cd_catalog.xml"></xml>
5
6
<table border="1" datasrc="#cdcat">
7
8
<thead>
9
<tr><th>Artist</th><th>Title</th></tr>
10
</thead>
11
12
<tfoot>
13
<tr><th colspan="2">This is my CD collection</th></tr>
14
</tfoot>
15
16
<tbody>
17
<tr>
18
<td><span datafld="artist"></span></td>
19
<td><span datafld="title"></span></td>
20
</tr>
21
</tbody>
22
23
</table>
24
25
</body>
26
</html>
27