日期:2014-05-16 浏览次数:20450 次
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0-beta1.js"></script>
</head>
<body>
<input type="checkbox" class="chebox" /><input type="checkbox" class="chebox" disabled /><input type="checkbox" class="chebox" /><input type="checkbox" class="chebox" /><input type="checkbox" class="chebox" /><input type="checkbox" class="chebox" />
<script type="text/javascript">
$(function(){
//console.log($(".check"))
$(".chebox").each(function(){
if(!$(this).is(':disabled')){
$(this).prop('checked',true);
}
})
})
</script>
</body>
</html>