• css class嵌套


    css 代码:

    <style>
        .chose_bonus {
            font-size:9px;width:400px;border: 2px solid #dddddd;margin-top:5px;margin-bottom:5px;padding:9px;background:#ecf3fc; color:#FFF;
        }
    .chose_bonus.active{
      //.chose_bonus .active{ 之前是这么写的,不通,后换成上面的方式,就OK 了
    background: #ecf3fc url(/ui/common/images/checked-blue.png) no-repeat right bottom;
    border: 2px solid #467cbd;
        }
    </style>

    JS代码:

    <script type="text/javascript">
        $('.chose_bonus').click(function(){
            if ($(this).hasClass("active")) {
                $(this).removeClass("active");
            }else{
                $(this).addClass("active");    
            }
        })
    </script>

    html代码:

                <tr class="bonus">
                    <th width="120">可选红包</th>
                    <td >
                    <!--{loop $bonuslist['list'] $key $bonus}-->
                    <div class="chose_bonus" id="{$bonus['id']}">
                        <span style="font-weight:bold;color:#000;">红包:</span><b style="color:#fbb450;">金额{$bonus['total_value']}元 剩余:{$bonus['balance_value']}元</b> <br/>
                        <span style="font-weight:bold;color:#000;">时效:</span><span style="color:#000;font-weight:bold;"> {$bonus['start_time']}~{$bonus['end_time']} </span><br/>
                        <span style="font-weight:bold;color:#000;">规则:</span><span style="color:#000;"> {$bonus['rule_value']}</span>
                    </div>
                    <!--{/loop}-->
                    </td>
                </tr>
  • 相关阅读:
    MAC电脑操作快捷键
    Xcode的控制台调试命令
    iOS 页面间传值
    App开机动画
    TCP/IP长连接和短连接
    Using the Transient Fault Handling Application Block
    [转]数据库并发控制 乐观锁,悲观锁
    [转]网站度量指标
    dictionary 和 hashtable 区别
    负载均衡策略
  • 原文地址:https://www.cnblogs.com/zdan68/p/4310545.html
Copyright © 2020-2023  润新知