javascript – 我如何使用jquery实现像ctrl f这样的搜索

嗨我正在尝试搜索页面表tbody,搜索应该像ctrl F搜索这个我的HTMLPHP代码

请参阅下面链接图片链接获取来源.

    <table>
    <thead>
    <tr><td><input type="text" placeholder="Search Student id="searchStudent"> </td>
    <td></td><td></td><td></td><td></td><td></td></tr>
    </thead>

    <tbody>
    <tr>
    <td>
     <span><img src="<?PHP echo $gdscoreData['profile_pic']; ?>"/></span>
        <p><?PHP echo $gdscoreData['student_fname'];?> <?PHP echo $gdscoreData['student_lname'];?></p>
<p><b>Hallticket</b> : S<?PHP echo $gdscoreData['student_pid']; ?>J<?PHP echo $jobID; ?></p>
         </td>
    <td></td><td></td><td></td><td></td><td></td></tr>

第1个tr将关闭这里PHP代码是上面的一个在HTML中它看起来像图像中所示:

<tr><td><span><img src="profile_pic/first_1479536519.jpg" width="50" /></span><p>Robert Smith</p><p><b>Hallticket</b> : S27J2</p></td></tr>
</tbody>
</table>

这是我的javascript代码搜索,如ctrl F.

/* Search Student like ctrl+f start */
$("#searchStudent").on("keyup", function() {
    var value = $(this).val();
    console.log(value);
    $("table tbody tr").each(function(index) {
        if (index !== 0) {

            $row = $(this);

            var id = $row.find("td:first").text();

            if (id.indexOf(value) !== 0) {
                $row.hide();
            }
            else {
                $row.show();
            }
        }
    });
});
/* Search Student like ctrl+f end*/

enter image description here

以下是我尝试的来源:
Source JS

解决方法:

我已经修改了你的js小提琴代码,现在它工作jsfiddle.net/rFGWZ/3406/

       $("#search").on("keyup", function() {
        var value = $(this).val();
       if(value!='') {
           $("table tbody tr").hide();
       }else{
           $("table tbody tr").show();
       }
         $('table tbody tr td:contains("'+value+'")').parent('tr').show(); 
       });

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...