0
我不知道有什麼辦法可以將單個html文件分成幾個文件。我有一個包含許多博客帖子的索引文件。我想爲每篇博客文章創建一個不同的html文件並導入它們或將它們鏈接到主html文件。爲每個博客文章創建不同的html文件
示例;
<html>
<head>
</head>
<body>
<header>
</header>
<article>
<div id="blog-post-1">
<!-- Content of blog post -->
</div>
<div id="blog-post-2">
<!-- Content of blog post -->
</div>
<div id="blog-post-3">
<!-- Content of blog post -->
</div>
<div id="blog-post-4">
<!-- Content of blog post -->
</div>
<div id="blog-post-5">
<!-- Content of blog post -->
</div>
</article>
我只是想爲每個博客文章創建一個不同的文件;以上情況5個不同的html文件。然後,鏈接或導入它們在主HTML體。可能嗎?
在主html中,我想顯示博客帖子1.我不希望給鏈接文本。 – Hevan 2014-09-23 07:16:05
@你好,我爲你編輯:) – 2014-09-23 08:19:04