0

我有一个单选类型的切换按钮。有三个按钮和选项,一次只能选择一个按钮。但问题是按钮始终保持选中状态(我知道单选按钮没有未选中的选项)。没有全部取消选中的选项。

我想做这样的事情:

如果再次单击任何选定的按钮,它将 Unchecked 。但是,如果未单击所选按钮,它将与当前相同。

这有可能做到吗?对不起英语不好

这是演示链接:Js Fiddle

HTML

<div style="margin:0px auto; margin-top:100px; width:960px;">
    <a href="#">
        <span class="toggleButtonRadio normal">toggle Radio button</span>
    </a>


    <a href="#">
        <span class="toggleButtonRadio normal">toggle Radio button</span>
    </a>


    <a href="#">
        <span class="toggleButtonRadio normal">toggle Radio button</span>
    </a>
</div>

CSS

* {
 margin: 0;
 padding: 0;
 border: 0px;
}

body {
 background: #fafafa;
 font-family: Helvetica, Arial, sans-serif;
 font-size: 0.813em;
 color:#333333;


}

a {color:#737373;text-decoration:none;
}

a:link { text-decoration: none;outline: none;
}

a:visited {text-decoration: none;
}

a:hover {color:#454545;
}

a:active {text-decoration: none;
}

ul {list-style: none; text-decoration: none;
}

ol {list-style-position: inside; color:#333333;padding:12px 10px 25px 15px;font-size: 1.07em;}
ol, li {padding-bottom:8px;}

img {}
em {color: #737373; font-weight:300;}

h1 {color: #737378; margin:20px 5px 20px 0px; font-size:2.4em; text-transform:uppercase;letter-spacing:1px; font-weight:100; text-shadow:1px 1px 1px #fff; }
h2 {color: #454545; margin:10px 5px 0px 0px;}
h3 {color: #454545; margin:10px 5px 0px 0px;}
h4 {color: #454545; margin:10px 5px 20px 0px; font-size:1.2em; width:98%; border-bottom:1px solid #eee;padding-bottom:10px;}
h5 {color: #454545; margin:10px 5px 0px 0px;}
h6 {color: #454545; margin:10px 5px 0px 0px;}

p { color:#333; font-size:1.154em; margin:5px 10px 10px 0px; padding-bottom:10px;line-height:140%;}

hr { border: 0; clear: both; display: block; width: 100%; background-color: #bbbbbb; height: 1px; margin: 5px 0px;
}

select {
 color: #454545;
}

.toggleButtonRadio , .toggleButton {
 background: #e1e1e1; 
 text-decoration: none;
 text-align: center;
 font-family: Helvetica, Arial, sans-serif;
 font-size: .769em;
 font-weight: 900;
 color: #454545;
 text-transform: uppercase;
 text-decoration: none;
 padding: 5px 10px;
 -webkit-border-radius: 15px;
 border-radius: 15px;
 -webkit-box-shadow: 0px 0px 3px 0px rgba(64, 64, 64, .5);
box-shadow: 0px 0px 3px 0px rgba(64, 64, 64, .5);
}

.toggleButtonRadio:hover, .toggleButton:hover{
 background:#d4d4d4;
}

.toggleButtonRadio.active , .toggleButton.active{
background:#90bf00;
color:#fff;
}

.active:hover{
background:#7ca600;
}

js

$('.toggleButtonRadio').click(function(){
    $('.toggleButtonRadio').removeClass("active");      
    $(this).toggleClass("active");


    });
4

2 回答 2

3

我用一个简单的 IF ELSE 语句解决了你的问题:

jQuery

$('.toggleButtonRadio').click(function () {
    if ($(this).hasClass('active')) {
        $(this).removeClass("active");
    } else {
        $('.toggleButtonRadio').removeClass("active");
        $(this).addClass("active");
    }
});
于 2013-11-07T20:39:00.137 回答
2
$('.toggleButtonRadio').click(function(){
    $('.toggleButtonRadio').not(this).removeClass("active");      
    $(this).toggleClass("active");
});

这应该可以满足您的要求,因为它会删除active所有兄弟姐妹上的类(因此.not(this). 然后单击按钮的active类被切换为 on 或 of。

编辑:更改$(this)this,它更简单。

于 2013-11-07T20:37:27.910 回答