xml转化为html表格的问题,各位请进来看看。
我想将xml作如下转换
------------XML--Snippet-----------------
<node type="table" cols="3">
<node type="table" cols="x">
.......
</node>
<node type="cell" cols="1" />
<node type="cell" cols="2" />
<node type="cell" cols="1" />
<node type="cell" cols="1" />
<node type="cell" cols="1" />
<node type="cell" cols="1" />
<node type="table" cols="x">
.......
</node>
</node>
-----------HTML---Table-------------
<table>
<table>
.....
</table>
<tr><td colspan="2"/><td /></tr>
<tr><td /><td /><td /></tr>
<tr><td /><tr>
<table>
.....
<table>
<table>
----------------------------------
请问各位有什么高招啊?等待中……