Jump to content
  • 0

Один активный блок из трех


Villain
 Share

Question

Здравствуйте, такая ситуация, есть три кнопки, надо чтобы при нажатии одной кнопки появился первый блок, когда нажимаешь на вторую кнопку надо чтобы появился второй блок, а первый исчез. То есть надо чтобы всегда виден был один блок из трех, в зависимости от активной кнопки. Пробовал через elseif, не получилось.

Сейчас если нажать на первую кнопку(появится первый блок), а потом на вторую, то оба блока будут одновременно функционировать(то есть первый и второй блок).

Код:


<div id="all">

<div id="change">
<a href="<?php echo '/?page='.$page;?>&ch=one"><img src="img/one.jpg" /></a>
<a href="<?php echo '/?page='.$page;?>&ch=two"><img src="img/two.jpg" /></a>
<a href="<?php echo '/?page='.$page;?>&ch=three"><img src="img/three.png" /></a>
</div>

<?php
if ((!isset($_GET['ch'])) || (isset($_GET['ch'])=='one'))
{
echo '1 блок.';
}

if (isset($_GET['ch'])=='two')
{
echo '2 Блок';
}
if (isset($_GET['ch'])=='three')
{
echo '3 блок';
}

?>
</div>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

isset возвращает true или false. Так как 'one'==true, то всегда будет выполняться первое условие. Сравнивать надо не с результатом выполнения функции, а с переменной


if (!isset($_GET['ch']) || $_GET['ch']=='one')
...
elseif ($_GET['ch']=='two')

и так далее. Но вообще правильнее в таких случаях использовать switch ... case

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