zoukankan      html  css  js  c++  java
  • jquery table筛选数据

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>Insert title here</title>
            <script src="scripts/jquery.min.js"></script>
        </head>
        <style>
            table,tr,td{
                border:solid 1px;
                border-collapse:collapse;
                text-align:center;
            }
        </style>
        
        <body>
                    筛选:<input id="filter" type="text">
            <table>
                <thead>
                    <tr>
                        <td>姓名</td>
                        <td>性别</td>
                        <td>暂住地</td>
                    </tr>
                </thead>
                <tbody>
                    <tr class="parent" id="row_01"><td colspan="3">前台设计组</td></tr>
                    <tr class="child_row_01"><td>张三</td><td></td><td>浙江宁波</td></tr>
                    <tr class="child_row_01"><td></td><td></td><td>浙江宁波</td></tr>
                    
                    <tr class="parent" id="row_02"><td colspan="3">后端开发组</td></tr>
                    <tr class="child_row_02"><td>张三</td><td></td><td>宁波</td></tr>
                    <tr class="child_row_02"><td></td><td></td><td>浙江宁波</td></tr>
                    
                    <tr class="parent" id="row_03"><td colspan="3">美工组</td></tr>
                    <tr class="child_row_03"><td></td><td></td><td>浙江</td></tr>
                    <tr class="child_row_03"><td></td><td></td><td>浙江宁波</td></tr>
                </tbody>
            </table>
        </body>
        <script type="text/javascript">
            $(function(){
                $('#filter').keyup(function(){
                    $('table tbody tr').hide()
                        .filter(":contains('"+($(this).val())+"')").show();
                });
            });
        </script>
    </html>
  • 相关阅读:
    cvpr热词云
    第八周总结
    从小工到专家阅读笔记01
    【Spring实战4】10--搭建SpringMVC环境
    【Spring实战4】09---构建Spring web
    【Spring实战4】08---面向切面AOP
    读书
    【Spring实战4】07---Bean的作用域
    【Spring实战4】06---装配Bean(xml)
    【Spring实战4】05---装配Bean(Java)
  • 原文地址:https://www.cnblogs.com/wxldlxt/p/10948472.html
Copyright © 2011-2022 走看看