<script>
$comment.animate({height:'+=50'},400);//在原来的基础上加50;
$('.smaller').click(function(){
if(!$comment.is(':animated')){
if($comment.height()>50){
$comment.animate({height:'-=50'},400);
}
}
})
//控制滚动条高度的变化,使文本内容随着滚动
$(function(){
$('.down').click(function(){
if(!$comment.is(':animated')){
$comment.animate({scrollTop:'+=50'},400)
}
})
})
// 全选
$('#checkedAll').click(function(){
$('[name=items]:checkbox').attr('checked',true);
})
$('#checkedDev').click(function(){
$('[name=items]:checkbox').each(function(){
this.checked=!this.checked;
})
})
//输出选中项的值
$('#checkedVal').click(function(){
$('[name=items]:checkbox').each(function(){
$(this).val();
})
})
</script>