在我的Rails应用程序中,我创建了一组复选框,如下所示:
<div class="form_row">
<label for="features[]">Features:</label>
<% ['scenarios', 'news', 'role_profiles', 'private_messages', 'chatrooms', 'forums', 'polls'].each do |feature| %>
<br><%= check_box_tag 'features[]', feature, (@features || {}).include?(feature) %>
<%= feature.humanize %>
<% end %>
</div>
我想知道如何创建一个“全选”的按钮。
答案 0 :(得分:4)
使用jQuery;
<script type="text/javascript">
function selectAll(){
$("input:checkbox").each(function(){
$(this).attr('checked', true);
});
return false;
}
</script>
HTML按钮:
<a href="#" onclick="selectAll()">Select All</a>
答案 1 :(得分:1)
如果您使用Prototype JS,您可能会发现此博文有用。它提供了一种相当简洁的方式来执行全选。
http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html
在您的视图中,您可以使用以下代码段创建“全选”链接:
<%= link_to_function("Select All","checkboxes.each(function(e){ e.checked = 1 })") %>
此外,您需要在同一页面上的某个地方使用以下Javascript代码(或者甚至可能将其抽象为public/javascripts/application.js
文件
var checkboxes = [];
checkboxes = $$('input').each(function(e){ if(e.type == 'checkbox') checkboxes.push(e) });
var form = $('options'); /* Replace 'options' with the ID of the FORM element */
checkboxes = form.getInputs('checkbox');
这是一个工作示例的完整源代码,如果这不起作用,您可能需要检查以确保您的JS库正确加载。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://www.google.com/jsapi" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var checkboxes;
google.load("prototype", "1.6");
google.setOnLoadCallback(function(){
checkboxes = [];
checkboxes = $$('input').each(function(e){ if(e.type == 'checkbox') checkboxes.push(e) });
var form = $('options'); /* Replace 'options' with the ID of the FORM element */
checkboxes = form.getInputs('checkbox');
});
</script>
</head>
<body>
<form id="options">
<fieldset><input type="text" value="test"></fieldset>
<fieldset><input type="checkbox" value=0> 0</fieldset>
<fieldset><input type="checkbox" value=1> 1</fieldset>
<fieldset><input type="checkbox" value=2> 2</fieldset>
<fieldset><input type="checkbox" value=3> 3</fieldset>
</form>
<a href="#" onclick="checkboxes.each(function(e){e.checked = 1})">Select All</a>
</body>
</html>
答案 2 :(得分:0)
我认为你可以使用这样的查询
<script>
$('#check_all').on("click", function(){
var check = $('input[type="checkbox"]');
check.prop("checked", !check.prop("checked"));
});
</script>
,html就像
<%= button_tag 'select / unselect all', id: 'check_all', class:'b' %>