<include refid = "columns"/>
时间: 2023-07-02 21:21:46 浏览: 94
include 详析
这个标签表示将ID为"columns"的内容包含在当前位置。例如:
```
<section>
<h2>我的专栏文章</h2>
<include refid="columns"/>
</section>
```
如果ID为"columns"的内容如下:
```
<div id="columns">
<article>
<h3>第一篇文章</h3>
<p>文章内容...</p>
</article>
<article>
<h3>第二篇文章</h3>
<p>文章内容...</p>
</article>
</div>
```
那么在"include"标签所在的位置就会被替换为"columns"的内容,即:
```
<section>
<h2>我的专栏文章</h2>
<div id="columns">
<article>
<h3>第一篇文章</h3>
<p>文章内容...</p>
</article>
<article>
<h3>第二篇文章</h3>
<p>文章内容...</p>
</article>
</div>
</section>
```
阅读全文