I am a new developer.
我是一名新开发人员。
I am making a website and it will contain a lot of pages, more likely 100 or more. In all those pages I have inserted HTML tables.
我正在制作一个网站,它将包含很多页面,更可能是100个或更多。在所有这些页面中,我插入了HTML表格。
Now how can I update all table content at once? Without editing hundreds of pages?
现在我如何一次更新所有表格内容?没有编辑数百页?
I have inserted links into the table but I need to update the links in all pages. this is the table I inserted in all pages.
我已将链接插入表中,但我需要更新所有页面中的链接。这是我在所有页面中插入的表格。
<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>
How can I update example.com?
我该如何更新example.com?
2 个解决方案
#1
0
create one table.html file put your table in this htmlfile use jquery.js use jquery load function
创建一个table.html文件把你的表放在这个htmlfile中使用jquery.js使用jquery加载函数
$('#div1').load('table.html', function() {
//callback
});
update only at once.
只更新一次。
#2
0
First You should learn about a web programming language ( PHP for example ) instead of writing static HTML pages.
首先您应该了解Web编程语言(例如PHP),而不是编写静态HTML页面。
Second to make your site available thought the internet you will need to buy a hosting and domain name. Or start with a free service
其次,为了使您的网站可用,您需要购买主机和域名。或者从免费服务开始
#1
0
create one table.html file put your table in this htmlfile use jquery.js use jquery load function
创建一个table.html文件把你的表放在这个htmlfile中使用jquery.js使用jquery加载函数
$('#div1').load('table.html', function() {
//callback
});
update only at once.
只更新一次。
#2
0
First You should learn about a web programming language ( PHP for example ) instead of writing static HTML pages.
首先您应该了解Web编程语言(例如PHP),而不是编写静态HTML页面。
Second to make your site available thought the internet you will need to buy a hosting and domain name. Or start with a free service
其次,为了使您的网站可用,您需要购买主机和域名。或者从免费服务开始