如何使用xml解析html表格?
我有一个 html 表格,其格式
<table>
<th>
<td> td1 </td>
<td> td2 </td>
<td> td3 </td>
<td> td4 </td>
<td> td5 </td>
<td> td6 </td>
<td> td7 </td>
<td> td8 </td>
<td> td9 </td>
<td> td10 <td>
</th>
</table>
需要解析表格主体内每行的单元格。我使用 javascript 循环遍历该行,为了保存我正在使用 webmethod 的 html 内容(因为在保存时,我的页面将重新加载,并且我将丢失我的 html 表,以避免我使用 webmethod 将其存储在会话中)也发生在我的 javascript 调用中)。问题是我的客户端脚本有时会被跳过,并且我无法保存我的 html 内容。所以我想到在一个脚本调用中将html内容作为一个整体发送,并在服务器端进行解析。
现在,我需要知道如何从服务器端解析它。有人可以帮我用 xml 解析它吗?
I'm having an html table of the format
<table>
<th>
<td> td1 </td>
<td> td2 </td>
<td> td3 </td>
<td> td4 </td>
<td> td5 </td>
<td> td6 </td>
<td> td7 </td>
<td> td8 </td>
<td> td9 </td>
<td> td10 <td>
</th>
</table>
I need to parse through the cells in each row within the table body. I looped through the row using a javascript and inorder to save the html content i'm using webmethod( because on saving, my page will reload and i will lose my html table, to avoid that i stored it on a session using webmethod and this too happens within my javascript call) . The issue is my client side script is getting skipped at times and i'm not able to save my html content. So i thought of to send the html content as a whole in one script call and do the parsing in server-side.
Now, i need to know how to parse it from server-side. Can some-body help me to parse it using xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该尝试
CodePlex 中的
I think you should try HTML Agility Pack
from CodePlex