zoukankan      html  css  js  c++  java
  • 选中删除本行 本列

    <!DOCTYPE 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>
    <style type="text/css">
    .box{
    width:500px;
    height:500px;
    }
    .shan-box{
    width:500px;
    height:150px;
    background:#666;
    }
    .shan-box:nth-child(odd){
    background:#ccc;
    }
    </style>
    </head>
    
    <body>
    <div class="box">
    <input type="button" value="删除" class="delete"/>
    <div class="shan-box">
    <input type="checkbox" />
    </div>
    <div class="shan-box">
    <input type="checkbox" />
    </div>
    <div class="shan-box">
    <input type="checkbox" />
    </div>
    <div class="shan-box">
    <input type="checkbox" />
    </div>
    
    </div>
    </body>
    <script type="text/javascript" src="花枪B端静态页/js/jquery-1.7.2.min.js"></script>
    <script type="text/javascript">
    $(function(){
    $(".delete").click(function(){
    var obj_checked=$(".shan-box input:checked");
    var obj_shan=$(".shan-box input:checked").parent(".shan-box");
    if(obj_checked.length > 0){
    obj_shan.remove();
    }else{
    
    }    
    
    })
    })
    </script>
    </html>
  • 相关阅读:
    ViewData,ViewBag,TempData
    http和https
    Array与ArrayList
    程序员与书和视频
    技术学习的方法研究
    文章发布声明
    面向对象JAVA多态性
    嵌入式开发总结
    CSDN博客代码显示乱码的原因
    将Windows的桌面目录设置到D盘
  • 原文地址:https://www.cnblogs.com/jinsuo/p/6042548.html
Copyright © 2011-2022 走看看