动态更新HTML部分或div中的内容

时间:2014-04-08 19:11:11

标签: javascript html css html5 rss

我有3个表单元格用于显示信息。它们跨越100%的网页宽度。我需要能够以某种方式能够使用新信息更新单元格内的内容,并且可能会为每个单元格设置滚动条。

我在想RSS还是有更好的方法?

1 个答案:

答案 0 :(得分:0)

您可以将iFrame放入每个单元格中。这将允许您引用其他内容并在需要时显示滚动条。

例如:

<table width="100%>
    <tr>
         <td width="33%"><iframe src="http://YourSourceContentUrlHere" scrolling="yes"></iframe></td>
         <td width="34%"><iframe src="http://YourSourceContentUrlHere" scrolling="yes"></iframe></td>
         <td width="33%"><iframe src="http://YourSourceContentUrlHere" scrolling="yes"></iframe></td>
    </tr>
</table>

您需要设置高度并调整单元格宽度 如果您需要在页面加载后更改iframe的网址,请查看此帖子: How to change the iframe src?