我有两个不同的 PHP 文件:
- 索引.php
- 显示.php
-
index.php
<ul>
<li><a href="show.php?id=1">Show Div 1</a></li>
<li><a href="show.php?id=2">Show Div 2</a></li>
<li><a href="show.php?id=3">Show Div 3</a></li>
</ul>
-
show.php
<style type="text/css">
.div1 {display:none;}
.div2 {display:none;}
.div3 {display:none;}
</style>
<div class="div1">Div 1 Content</div>
<div class="div2">Div 2 Content</div>
<div class="div3">Div 3 Content</div>
-
当您阅读 中的 css 样式时show.php
,不会显示任何内容。
如果用户从 中单击哪一个,则用户只能看到<li>
从中单击的哪一个。index.php
.div
show.php
<li>
index.php
我假设这种方法会减少文件。(就像我想知道的那样)
因为要显示的所有内容都在一个文件中(show.php
)。
好吧,如何制作每个<li>
fromindex.php
只会显示每个 div 中的内容show.php
。