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

网页内搜索(2)

时间:2020-05-10 01:11:17      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:inpu   style   span   color   tab   内容   script   put   div   

<script type="text/javascript">
            $().ready(function() {
                $("#txtName").keyup(
                    function() {
                        $("table tr:gt(0)").hide();
                        var $d = $("table tr:gt(0)").filter(":contains(‘" + $.trim($("#txtName").val()) + "‘)");
                        $d.show();
                    }
                )
            })
        </script>
<div style="margin: 0 auto;">
动态搜索:<input  type="text" id="txtName" />
</div>
<table>内容</table>

 

网页内搜索(2)

标签:inpu   style   span   color   tab   内容   script   put   div   

原文地址:https://www.cnblogs.com/tangsujuan/p/12861475.html

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