?<script type="text/javascript" src="jquery-1.3.1.js"></script>
<input type="checkbox" value="籃球"/>籃球
<input type="checkbox" ?value="排球"/>排球
<input type="checkbox" ?value="足球"/>足球
<input type="checkbox" value="乒乓球"/>乒乓球
<input type="button" id="check" value="選中的個(gè)數(shù)"/>
<script>
$('#check').click(function(){
$arr=$('input[type="checkbox"]:checked');
$.each($arr,function(){
//window.alert("已經(jīng)選中個(gè)數(shù)"+$(this).val());
window.alert("已經(jīng)選中個(gè)數(shù)"+this.value);
})
});
</script>