继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

html + jQuery 遍历主机组下的主机

所谓伊人_在水一方
关注TA
已关注
手记 273
粉丝 23
获赞 169




{% block right-content %}         <div class="row">        <div class="list-group ">             <h4>主机列表</h4>             <ul class="list-group " id="groups"  >                {%  for group in request.user.userprofile.host_groups.select_related %}                    <li class="list-group-item">                        {{ group }}                        <span class="badge">{{ group.host_set.count }}</span>                    </li>                    <ul class="list-group hidden">                        {%  for host in group.host_set.select_related %}                            <li class="list-group-item">                                    {{ host }}                            </li>                         {% endfor %}                    </ul>                    <hr>                {% endfor %}             </ul>        </div>    </div>{% endblock %}{% block js %}<script>    $(document).ready(function () {        $("#groups li").click(function () {            $(this).addClass("active")            $(this).siblings().removeClass("active")            $(this).siblings().children().removeClass("active")            $(this).parent().siblings().removeClass("active")            $(this).next().removeClass("hidden")            $(this).next().siblings('ul').addClass("hidden")        })    })</script>


wKiom1ft7WuC1ZEOAACgAxiapGs495.jpg-wh_50

wKioL1ft7W2wjQAZAACSpLxKwqw853.jpg-wh_50

wKioL1ft7W6Qj9coAACtjgl9kW4353.jpg-wh_50

wKiom1ft7W-w2iGEAACjSdFkqPU281.jpg-wh_50


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP