jQuery操作 checkbox 的全选、反选 , radio, select 功能
Posted on 2009-07-06 17:46 hyd309 阅读(821) 评论(0) 编辑 收藏 举报<script type="text/javascript" src="../project/blogcms2/js/jquery.js" ></script>
<script>
$(function () {
// 全选
$('#hobby_all').click(function () {
$('input[name="hobby[]"]').attr("checked",true);
}) ;
// 反选
$('#hobby_anti_all').click(function () {
$('input[name="hobby[]"]').attr("checked",false);
}) ;
// 全选
$('#city_all').click(function () {
$('input[name="city[]"]').attr("checked",true);
}) ;
// 反选
$('#city_anti_all').click(function () {
$('input[name="city[]"]').attr("checked",false);
}) ;
$('#submit').click(function () {
// 获取多选框的值
hobby = '<br>兴趣爱好: <br>' ;
$('input[@name="hobby[]"]').each(function () {
if ($(this).attr('checked') == true) {
hobby += $(this).attr('value')+",<br>" ;
}
});
// 获取多选框的值
city = '<br><br>喜欢的城市: <br>' ;
$('input[@name="city[]"]').each(function () {
if ($(this).attr('checked') == true) {
city += $(this).attr('value')+",<br>" ;
}
});
// 获取下拉列表的值
age = '<br><br>年龄: <br>' + $('#age').val() ;
// 获取单选框的值
sex = '<br><br>性别: <br>' + $('input[@type="radio"][@checked]').val() ;
$('.content').html(hobby + city + age + sex) ;
});
});
</script>
<style>
.fieldset{
width: 200px;
}
</style>
<div class='test' id='checkbox'>
<form method="post" >
性别
<input type="radio" name="sex" value="male" />男
<input type="radio" name="sex" value="female" />女
<input type="radio" name="sex" value="null" />保密
<br />
<br />
年龄:
<select name="age" id="age" value="年龄">
<option value="20">20</option>
<option value="30" >30</option>
<option value="40" >40</option>
<option value="50">50+</option>
</select>
<br />
<br />
<fieldset class="fieldset">
<legend>兴趣爱好 </legend>
旅游<input type="checkbox" name="hobby[]" id="tour" value="tour" /><br />
音乐<input type="checkbox" name="hobby[]" id="music" value="music" /><br />
足球<input type="checkbox" name="hobby[]" id="football" value="football" /><br />
网游<input type="checkbox" name="hobby[]" id="game" value="game" /><br />
<input type="button" name="hobby_anti_all" id="hobby_anti_all" value="反选"/>
<input type="button" name="hobby_all" id="hobby_all" value="全选" />
</fieldset>
<br />
<fieldset class="fieldset">
<legend>喜欢的城市</legend>
北京<input type="checkbox" name="city[]" id="beijing" value="beijing" /><br />
上海<input type="checkbox" name="city[]" id="shanghai" value="shanghai" /><br />
天津<input type="checkbox" name="city[]" id="tianjin" value="tianjin" /><br />
重庆<input type="checkbox" name="city[]" id="chongqing" value="chongqing" /><br />
<input type="button" name="city_anti_all" id="city_anti_all" value="反选"/>
<input type="button" name="city_all" id="city_all" value="全选" />
</fieldset>
<br /><input type="button" id="submit" value="sumit" />
</form>
<div class="content"></div>
</div>
<p>请自备jQuery的代码,并在本文的相应位置修改其路径与本地的对应即可!</p>