java jquery table变色_jQuery实例——展示表格点击变色、全选、删除

body{font-size:12px}table{width:360px;border-collapse:collapse}table tr th,td{border:solid 1px #666;text-align:center}table tr td img{border:solid 1px #ccc;padding:3px;width:42px;height:60px;cursor:pointer}table tr td span{float:left;padding-left:12px}table tr th{background-color:#ccc;height:32px;background-color:#fff}.clsImg{position:absolute;border:solid 1px #ccc;padding:3px;background-color:#eee;display:none;cursor:pointer}.btn{border:solid 1px #666;padding:2px;width:50px;filter:progd:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#fff,EndColorStr=#ECE9D8);cursor:pointer}

$(function(){//点击表格行变色$('tr').click(function(){if((this.style.backgroundColor=='')||(this.style.backgroundColor=='rgb(255, 255, 255)')){this.style.cssText='background-color:#CCC';

}else{this.style.cssText='background-color:#fff';

}

})//放大图显示$('.a').mousemove(function(e){

$('#imgTip').show().attr('src',this.src);

$('#imgTip').css({'top':(e.pageY+5)+'px','left':(e.pageX+5)+'px'});

});

$('.a').mouseover(function(e){

$('#imgTip').show().attr('src',this.src);

$('#imgTip').css({'top':(e.pageY+5)+'px','left':(e.pageX+5)+'px'});

});

$('.a').mouseout(function(){

$('#imgTip').hide();

});//点击全选$('#checkAll').click(function(){if(this.checked){

$(':checkbox').attr('checked',true);

}else{

$(':checkbox').attr('checked',false);

}

});//删除部分与全部$('.btn').click(function(){if($('#checkAll').attr('checked')){

$('table tr td :checkbox:not("#checkAll")').each(function(index){

$('#'+this.value).remove();

});

}else{

$(':checkbox:not("#checkAll")').each(function(index){if(this.checked){

$('#'+this.value).remove();

}

})

}

});

});

选项编号封面购书人性别够书价

全选

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值