我有一个Twitter Bootstrap按钮 - 收音机并挂了一个onclick事件。但是,如何检查触发了哪些按钮?
我的第一个想法是简单地检查类'active',但是这应该创建一个竞争条件(结果取决于是否首先处理Twitter Bootstrap事件或我自己的onclick事件。)
答案 0 :(得分:68)
这真令人讨厌。我最终使用的是:
首先,创建一组没有data-toggle
属性的简单按钮。
<div id="selector" class="btn-group">
<button type="button" class="btn active">Day</button>
<button type="button" class="btn">Week</button>
<button type="button" class="btn">Month</button>
<button type="button" class="btn">Year</button>
</div>
接下来,编写一个事件处理程序,通过“激活”单击的按钮效果和“停用”所有其他按钮来模拟单选按钮效果。 (编辑:评论中的综合Nick清洁版。)
$('#selector button').click(function() {
$(this).addClass('active').siblings().removeClass('active');
// TODO: insert whatever you want to do with $(this) here
});
答案 1 :(得分:61)
我看到很多复杂的答案,而这在Bootstrap 3中非常简单:
步骤1:使用the official example code创建单选按钮组,并为容器指定一个ID:
<div id="myButtons" class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3" autocomplete="off"> Radio 3
</label>
</div>
第2步:使用此jQuery处理程序:
$("#myButtons :input").change(function() {
console.log(this); // points to the clicked input button
});
答案 2 :(得分:19)
我会使用更改事件而不是像这样的点击:
$('input[name="name-of-radio-group"]').change( function() {
alert($(this).val())
})
答案 3 :(得分:9)
对于Bootstrap 3 ,默认的radio / button-group结构为:
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"> Option 1
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2"> Option 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3"> Option 3
</label>
</div>
你可以选择这样的活动:
$('.btn-primary').on('click', function(){
alert($(this).find('input').attr('id'));
});
答案 4 :(得分:6)
不要使用数据切换属性,以便您可以自己控制切换行为。所以它会避免“竞争条件”
我的代码:
按钮组模板(用.erb编写,嵌入式ruby用于ruby on rails):
<div class="btn-group" id="featuresFilter">
<% _.each(features, function(feature) { %> <button class="btn btn-primary" data="<%= feature %>"><%= feature %></button> <% }); %>
</div>
和javascript:
onChangeFeatures = function(e){
var el=e.target;
$(el).button('toggle');
var features=el.parentElement;
var activeFeatures=$(features).find(".active");
console.log(activeFeatures);
}
单击按钮后将触发onChangeFeatures函数。
答案 5 :(得分:3)
我需要对图表执行相同的操作,您可以在其中选择应显示的数据的周期。
因此我介绍了CSS类'btn-group-radio',并使用了以下不引人注目的javascript one-liner:
// application.js
$(document).ready(function() {
$('.btn-group-radio .btn').click(function() {
$(this).addClass('active').siblings('.btn').removeClass('active');
});
});
这是HTML:
<!-- some arbitrary view -->
<div class="btn-group btn-group-radio">
<%= link_to '1W', charts_path('1W'), class: 'btn btn-default active', remote: true %>
<%= link_to '1M', charts_path('1M'), class: 'btn btn-default', remote: true %>
<%= link_to '3M', charts_path('3M'), class: 'btn btn-default', remote: true %>
<%= link_to '6M', charts_path('6M'), class: 'btn btn-default', remote: true %>
<%= link_to '1Y', charts_path('1Y'), class: 'btn btn-default', remote: true %>
<%= link_to 'All', charts_path('all'), class: 'btn btn-default', remote: true %>
</div>
答案 6 :(得分:1)
查看Twitter Bootstrap页面(http://twitter.github.com/bootstrap/base-css.html#forms)上单选按钮的示例HTML,您可以看到每个输入都有唯一的ID属性,即optionsRadios1
和optionsRadios2
。< / p>
此处包含相关的HTML示例代码段,以确保完整性:
<div class="controls"> <label class="radio"> <input type="radio" checked="" value="option1" id="optionsRadios1" name="optionsRadios"> Option one is this and that—be sure to include why it's great </label> <label class="radio"> <input type="radio" value="option2" id="optionsRadios2" name="optionsRadios"> Option two can is something else and selecting it will deselect option one </label> </div>
因此,您可以使用jQuery单击事件,然后使用this
引用查看单击的HTML元素的ID。
$('.controls').find('input').bind('click',function(event){ if($(this).attr('id')==='optionsRadios1'){ alert($(this).attr('id')); } else { //... call some other function } });
答案 7 :(得分:1)
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<script>
$(function() {
$("#my_launch_today_chk").change(function() {
var chk = $(this).prop('checked');
if(chk == true){
console.log("On");
}else{
console.log("OFF");
}
});
});
</script>
</head>
<body >
<input type="checkbox" id="my_launch_today_chk" checked data-on="Launch" data-off="OFF" data-toggle="toggle" data-size="small">
</body>
</html>
答案 8 :(得分:-1)
如果您的html与示例类似,那么click事件是在标签上产生的,而不是在输入中产生的,所以我使用下一个代码: Html示例:
<div id="myButtons" class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
</label>
</div>
该活动的Javascript代码:
$('#option1').parent().on("click", function () {
alert("click fired");
});