如何更新所有HTML页面中的表格内容?

时间:2014-08-26 11:31:11

标签: html css css3

我是新开发者。

我正在制作一个网站,它将包含很多页面,更可能是100个或更多。在所有这些页面中,我插入了HTML表格。

现在我如何一次更新所有表格内容?没有编辑数百页?

我已将链接插入表中,但我需要更新所有页面中的链接。 这是我在所有页面中插入的表格。

<table>
    <tr><th>Recomended</th></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
    <tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
</table>

如何更新example.com?

2 个答案:

答案 0 :(得分:0)

首先,您应该了解Web编程语言(例如PHP),而不是编写静态HTML页面。

第二,为了让您的网站在互联网上可用,您需要购买托管和域名。或者从a free service

开始

答案 1 :(得分:0)

创建一个table.html文件 把你的桌子放在这个htmlfile中 使用jquery.js 使用jquery加载函数

$('#div1').load('table.html', function() {

       //callback
});

只能立即更新。