码迷,mamicode.com
首页 > Web开发 > 详细

删除表格JQuery 效果

时间:2017-06-25 15:32:28      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:bsp   删除表格   删除表   idt   button   onclick   this   meta   ext   

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表格的删除和添加</title>
    <script type="text/javascript" src="jquery-1.8.3.min.js"></script>
</head>
<body>
   <table border="1px" width="500px" id="ss">
        <tr>
             <th>姓名</th>
             <th>大小</th>
             <th>性别</th>
             <th>操作</th>
        </tr>
        <tr>
              <td>小强</td>
              <td>B</td>
              <td>男</td>
              <td><button onclick="fun(this)">删除</button></td>
        </tr>
        <tr>
            <td>大熊</td>
            <td>F</td>
            <td>男</td>
            <td><button onclick="fun(this)">删除</button></td>
        <hr>
            
        </tr>
   </table>    
</body>
<script type="text/javascript">
    // 删除
    function fun(ob){
        $(ob).parents("tr").remove();
    }
</script>
</html>

删除表格JQuery 效果

标签:bsp   删除表格   删除表   idt   button   onclick   this   meta   ext   

原文地址:http://www.cnblogs.com/kevin-yang520/p/7076801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!