" />

小言_互联网的博客

jQuery全选全删动态表格

188人阅读  评论(0)

jQuery全选全删动态表格

1.效果图附上:

2.代码呈上:



<!DOCTaYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content=" keywords" />
<meta name="description" content="description" />
</head>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css">
    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}
</style>
<body>
<script type="text/javascript">
    $(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();
                    }
                })
            }
        });
    });
</script>

<table>
<tr>
<th>选项</th>
<th>编号</th>
<th>封面</th>
<th>购书人</th>
<th>性别</th>
<th>够书价</th>
</tr>
<tr id="0">
<td><input type="checkbox" name="" id="checkbox1" value="0" /></td>
<td>1001</td>
<td><img src="img/1.jpg" title="" alt="" class="a" /></td>
<td>真三风</td>
<td></td>
<td>35.6</td>
</tr>
<tr id="1">
<td><input type="checkbox" name="" id="checkbox2" value="1" /></td>
<td>1002</td>
<td><img src="img/2.jpg.png" title="" alt="" class="a" /></td>
<td>张三丰</td>
<td></td>
<td>28.9</td>
</tr>
<tr id="2">
<td><input type="checkbox" name="" id="checkbox3" value="2" /></td>
<td>1003</td>
<td><img src="img/3.jpg.png" title="" alt="" class="a" /></td>
<td>贾三疯</td>
<td></td>
<td>34.3</td>
</tr>
<tr id="3">
<td><input type="checkbox" name="" id="checkbox3" value="3" /></td>
<td>2356</td>
<td><img src="4.jpg" title="" alt="" class="a" /></td>
<td>三丰</td>
<td></td>
<td>23.3</td>
</tr>
</table>
<table>
<tr>
<td style="text-align:left;height:28px">
<span><input type="checkbox" name="" id="checkAll" />全选</span>
<span><input type="button" value="删除" class="btn" /></span>
</td>
</tr>
</table>
<img src="img/2.jpg.png" title="" alt="" id="imgTip" class="clsImg" />
</body>
</html>




转载:https://blog.csdn.net/qq_36760873/article/details/102231566
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场