zoukankan      html  css  js  c++  java
  • radio和label关联问题,点击label改变颜色

    $(function () {
        $("#fangan :radio[name='price']").bind('click', function (event) {
            //$(this).next().attr("class", "on");
            $("input[name='price']").each(function () {
                //这里是查找name=checkday的选框并遍历  当然你也可以直接用 $("input:radio")
    
                if ($(this).attr("checked") == "checked") {
                    //这里是判断是否被选中  
                    $(this).next().attr("class", "on")
                }
                else {
                    $(this).next().attr("class", "hide")
                }
            })
        })
        $("#fangan :radio[name='num']").bind('click', function (event) {
            //$(this).next().attr("class", "on");
            $("input[name='num']").each(function () {
                //这里是查找name=checkday的选框并遍历  当然你也可以直接用 $("input:radio")
    
                if ($(this).attr("checked") == "checked") {
                    //这里是判断是否被选中  
                    $(this).next().attr("class", "on")
                }
                else {
                    $(this).next().attr("class", "hide")
                }
            })
        })
        $("#fangan :checkbox[name='model[]']").bind('click', function (event) {
            //$(this).next().attr("class", "on");
            $("input[name='model[]']").each(function () {
                //这里是查找name=checkday的选框并遍历  当然你也可以直接用 $("input:radio")
    
                if ($(this).attr("checked") == "checked") {
                    //这里是判断是否被选中  
                    $(this).next().attr("class", "on")
                }
                else {
                    $(this).next().attr("class", "hide")
                }
            })
        })
        $("#fangan :checkbox[name='color[]']").bind('click', function (event) {
            //$(this).next().attr("class", "on");
            $("input[name='color[]']").each(function () {
                //这里是查找name=checkday的选框并遍历  当然你也可以直接用 $("input:radio")
    
                if ($(this).attr("checked") == "checked") {
                    //这里是判断是否被选中  
                    $(this).next().attr("class", "on")
                }
                else {
                    $(this).next().attr("class", "hide")
                }
            })
        })
    })
    

      

  • 相关阅读:
    [LoadRunner]UTF8字符格式
    Python的数字类型及其技巧
    Python的数据类型总结
    理解Python的迭代器
    一篇文章让你彻底搞清楚Python中self的含义
    Python中类的运算符重载
    深入理解Python中的生成器
    模态窗口点滴
    ASP.NET 防盗链的实现[HttpHandler]
    ASP.NET C# DataTable与Excel互操作示例
  • 原文地址:https://www.cnblogs.com/qinge/p/4877790.html
Copyright © 2011-2022 走看看