dongliang2005 2011-04-25 09:14
浏览 31
已采纳

jQuery或PHP - 如果启用/禁用了另一个DIV,则显示/隐藏DIV或LI

I have another question, not sure if this would be accomplished via PHP or jQuery, so I am posting it in both sections.

Basically what I want is this:

I have several DIVs on a page, including 4 divs entitled "Spring", "Summer", "Autumn" and "Winter".

I have another DIV that is called "Menu". In the menu, you can toggle each of the four season DIVs via jQuery. There are also several list items, for example "Ice Rinks" and "Ice Cream Stores". "Ice Rinks" would only be available when "Winter" is selected, and "Ice Cream Stores" when Summer is selected.

What I would like to do, preferably via jQuery, is HIDE "Ice Cream Stores" from the menu when the "Winter" DIV is enabled, or HIDE "Ice Rinks" when the "Summer" DIV is enabled.

Basically, I need a way to either selectivly, or dynamically (perhaps via a class on the list items) assign the menu items to one of the 4 Season DIVS, and then hide those items from the Menu when the associated Season DIV is toggled off.

Is this possible, and if so, does anyone have any code examples of how this would be accomplished?

Thanks Zach

  • 写回答

1条回答 默认 最新

  • dongshai1944 2011-04-25 09:41
    关注

    It's possible. You can do like this

    HTML:

    <div id="spring" class="menubtn">Spring</div>
    <div id="summer" class="menubtn">Summer</div>
    <div id="autumn" class="menubtn">Autumn</div>
    <div id="winter" class="menubtn">Winter</div>
    <ul id="itemlist">
        <li class="winter">Ice Rinks</li>
        <li class="summer">Ice Cream Stores</li>
    </ul>  
    

    Javascript:

    $(document).ready(function(){
        $('.menubtn').click(function(){
            // Handle Menu
            $('.menubtn').removeClass('active')
            $(this).addClass('active');
    
            // Handle item list. This is what you want to do 
            $('#itemlist li').hide();
            $('#itemlist li.' + $(this).attr('id')).show();
        });
    });
    

    You can see the demo here: http://jsfiddle.net/ynhat/Cgeus/3/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ogg dd trandata 报错
  • ¥15 高缺失率数据如何选择填充方式
  • ¥50 potsgresql15备份问题
  • ¥15 Mac系统vs code使用phpstudy如何配置debug来调试php
  • ¥15 目前主流的音乐软件,像网易云音乐,QQ音乐他们的前端和后台部分是用的什么技术实现的?求解!
  • ¥60 pb数据库修改与连接
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错