Jump to content
  • 0

<switch> Альтернативный синтаксис в меню


SCooTERina
 Share

Question

В чём ошибка в этом коде? По задумки хочу, чтобы активный пункт меню был выделен жирным, по факту отображается только один пункт, остальные просто исчезают.


<ul>
<li><? switch($_GET['act']):
case 'index': echo '<b>'; ?><a href="?act=index">Главная</a><? echo '</b>'; break; ?></li>
<li><? case 'editor': echo '<b>'; ?><a href="?act=editor">Управление</a><? echo '</b>'; break; ?></li>
<li><? case 'minimizer': echo '<b>'; ?><a href="?act=minimizer">Уменьшение букв</a><? echo '</b>'; break; ?></li>
<? endswitch; ?>
</ul>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

вы весь код запихали в case'ы потому отображается только из одного case

Можно сделать как то так:


<style>
.active {
font-weight: bold;
}
</style>
<li><a href="?act=index" class="<? echo $_GET['act']=='index'?'active':'';?>">Главная</a></li>
<li><a href="?act=editor" class="<? echo $_GET['act']=='editor'?'active':'';?>">Управление</a></li>
<li><a href="?act=minimizer" class="<? echo $_GET['act']=='minimizer'?'active':'';?>">Уменьшение букв</a></li>

Edited by wwt
Link to comment
Share on other sites

  • 0

Сайт не на движке.

В общем остановился на таком варианте, почему-то switch мне казался изначально оптимальнее, но на практике там кода в 2 раза больше получается чем даже через обычное условие.


<ul>
<li><a href="?act=index" class="<? if($_GET['act'] == 'index') echo 'active'; ?>">Главная</a></li>
<li><a href="?act=editor" class="<? if($_GET['act'] == 'editor') echo 'active'; ?>">Управление</a></li>
<li><a href="?act=minimizer" class="<? if($_GET['act'] == 'minimizer') echo 'active'; ?>">Уменьшение букв</a></li>
</ul>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy