本文介绍了如何将xml文件加载到HTML表中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我用HTML创建了一个包含2个单元格的表格。第一个单元格名为电影名称,第二个单元格为空。



我会用外部源(xml文件)中的电影标题填充第二个单元格。我怎么能这样做呢?感谢您的帮助,新的编程



Hi Guys,

I have simply created a table in HTML with 2 cells.The first cell entitled "film name" and the second cell empty.

I would to fill the second cell with a film title from an external source (xml file). How can I go about in doing this? thank you for your help in advance, new to programming

<tr id="movie1">
     <td>
     Film name
     </td>
     <td>
     I WANT THE MOVIE TITLE TO BE LOADED IN THIS CELL
     </td>
  </tr>







再次感谢你。



L.




Thank you once again.

L.

推荐答案


这篇关于如何将xml文件加载到HTML表中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 18:25