使用 jQuery 选择所有复选框
我只想在用户单击“全选”按钮时选中页面上的所有复选框。
在正文中:
<button id="checkall">Select All</button>
jQuery:
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#checkall').click(function () {
$("input[type=checkbox]").each( function() {
$(this).attr('checked', true);
});
});
</script>
</head>
复选框是由一点 php 生成的:
echo '<li>';
echo '<input type="checkbox" name="checkbox[]" value="'.$x.'" />'.$x.'<br/>';
echo '</li>';
任何人都可以告诉我我做错了什么吗?
I simply want to check all of the check boxes on a page if a user clicks the "Select All" button.
In the body:
<button id="checkall">Select All</button>
jQuery:
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#checkall').click(function () {
$("input[type=checkbox]").each( function() {
$(this).attr('checked', true);
});
});
</script>
</head>
And the checkboxes are generated by a little bit of php:
echo '<li>';
echo '<input type="checkbox" name="checkbox[]" value="'.$x.'" />'.$x.'<br/>';
echo '</li>';
Can anyone tell me what I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不需要每个语句。只需选择所有复选框并设置属性
checked = true
。注意 jQuery.prop() 是 1.6 及更高版本中添加的功能。如果您使用的是 1.6 之前的 jQuery 版本,您将需要以下内容。
You dont need the each statement. Just select all checkboxes and set the property
checked = true
.Note jQuery.prop() is a feature added to 1.6 and up. If you are on a version of jQuery prior to 1.6 you will need the following.
与其选择带有标签名称的复选框,不如为其分配一些类并使用类名
php 代码选择它
Instead of selecting checkbox with tag name better assign it some class and select it with classname
php code
您只是错过了
.each(function(){}
语句的});
!没有其他错误!You just miss a
});
for the.each(function(){}
statement! There was no error else!这会起作用,简短而方便的代码
This Will Work, Short and handy Code