php - 根据您单击的链接在 DIV 中显示不同的内容

标签 php css class html

我有一个演示网站,我一直在上面试用一些功能。我想做的是根据您点击进入页面的链接,仅显示绿色或蓝色的 DIV。

这是我现在使用的示例主页,但是它需要我构建 3 个单独的页面来显示结果; all.php、green.php 和 blue.php。我希望只有一页并根据需要隐藏或显示 DIV

<?php


    // which page should be shown now
    $page = (isset($_GET['page']) && $_GET['page'] != '') ? $_GET['page'] : 'home';



    // only the pages listed here can be accessed
    // any other pages will result in error
     $allowedPages = array('home',
        'all',
        'blue',
        'green',


     )
    ;


        if (!in_array($page, $allowedPages) || !file_exists($page . '.php')) {
            $page = 'notfound';
        } 

        // set prettier title
        //$title .= ($page != 'home') ? ' - ' . ucfirst($page) : '';



    // start output buffering so headers can be used in sub pages
            ob_start();



    ?> <html>
          <head>
            <title>tester</title>
            <link rel="stylesheet" href="nav.css" type="text/css" media="all" />
            <script type="text/javascript" src="sucker.js"></script>
          </head>
          <body>
            <ul id="nav">
              <li>
                <a href="index.php?page=all">All Color</a>
              </li>
              <li>
                <a href="index.php?page=green">Greew/a>
                <ul>
                  <li>
                    <a href="index.php?page=blue">Blue</a>
                  </li>

                </ul>
              </li>

            </ul>
            <div class="clear"></div>
        <?php


        include($page . '.php');

        ?>

          </body>
        </html>

这是all.php的内容

        <div style="min-height: 245px; border: 2px solid transparent;" class="itemWrapper">
            <a class="itemLink" href="http://www.demo.com/products/blue1.jpg">
            <img src="images/products/hold.jpg" class="itemImage" style="width:150px;;height:150px;;"/></a>
            <h3 class="itemTitle"> Blue Item 1</a></h3>
            <p class="itemPrice">$5.00</p>
            <img style="display: none;" class="quickViewBtn" src="images/products/quick_view.png" />
        </div>

        <div style="min-height: 245px; border: 2px solid transparent;" class="itemWrapper">
            <a class="itemLink" href="http://www.demo.com/products/blue2.jpg">
            <img src="images/products/hold.jpg" class="itemImage" style="width:150px;;height:150px;;"/></a>
            <h3 class="itemTitle"> Blue Item 2</a></h3>
            <p class="itemPrice">$3.00</p>
        <img style="display: none;" class="quickViewBtn" src="images/products/quick_view.png" /></div>

        <div style="min-height: 245px;" class="itemWrapper">
            <a class="itemLink" href="http://www.demo.com/products/blue3.jpg">
            <img src="images/products/hold.jpg" class="itemImage" style="width:150px;;height:150px;;"/></a>
            <h3 class="itemTitle"> Blue Item 3</a></h3>
            <p class="itemPrice">$4.00</p>
        <img style="display: none;"  class="quickViewBtn" src="images/products/quick_view.png" alt= "Quick View" /></div>

        <div style="min-height: 245px;" class="itemWrapper last">
            <a class="itemLink" href="http://www.demo.com/products/green1.jpg">
            <img src="images/products/hold.jpg" class="itemImage" style="width:150px;;height:150px;;"/></a>
            <h3 class="itemTitle"> Green Item 1</a></h3>
            <p class="itemPrice">$1.00</p>
        <img style="display: none;"  class="quickViewBtn" src="images/products/quick_view.png" /></div>

          <div style="min-height: 245px;" class="itemWrapper last">
            <a class="itemLink" href="http://www.demo.com/products/green2.jpg">
            <img src="images/products/hold.jpg" class="itemImage" style="width:150px;;height:150px;;"/></a>
            <h3 class="itemTitle"> Green Item 2</a></h3>
            <p class="itemPrice">$2.00</p>
        <img style="display: none;"  class="quickViewBtn" src="images/products/quick_view.png" /></div>

      </div>

如果您能提供任何帮助,那就太好了!

最佳答案

如果您希望它是无缝的,jQuery/JavaScript 是您的最佳选择,但由于您说这只是一种“测试”站点,我假设您更多地使用它来试验 PHP 并且乐趣。因此,您需要做的是将所有三个页面放入一个文件中,然后将所有三个页面包装在一个 if...then 语句中。有效地:

<?php
if (!isset($_POST['page'])) {
    //let the user make a choice
} else if ($_POST['page'] == 'green') {
    ?> 
    <!--HTML for the "green" pages goes here!-->
    <?php
} else if ($_POST['page'] == 'blue') {
    ?> 
    <!--HTML for the "blue" pages goes here!-->
    <?php
} else {
    print("Invalid page selection!"); //Keep in mind, we want to "error check" to make sure the user actually selected a page
}
?>

如果你有更多的“页面”,你应该使用 switch 语句。如果这是一个非常大的应用程序,您可以使用 include() 语句(但请确保您检查该文件是否存在!)并在您的应用程序中包含多个样式文件。

关于php - 根据您单击的链接在 DIV 中显示不同的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15511589/

相关文章:

php - array_map 在类里面不起作用

php - Yii 如何使用 json 响应重定向到绝对 URL

PHP MySQL根据变量更改选择查询

php - apache目录列表,全部下载

javascript - 垂直居中动态 UL

c++ - 类按钮需要函数指针

php - $settings 数组或配置类来存储项目设置?

php - 为什么它输出: the query is empty

css - x-editable 不适用于 django 中的 bootstrap 3

javascript - 无法在滚动移动设备上隐藏固定标题?