Notepad++Good Luck To You!

javascript 表格查找
浏览: 1491    评论: 0

<style>#myInput{background-image:url('https://static.runoob.com/images/mix/searchicon.png');/*搜索按钮*/background-...


<style>

#myInput {

    background-image: url('https://static.runoob.com/images/mix/searchicon.png'); /* 搜索按钮 */

    background-position: 10px 12px; /* 定位搜索按钮 */

    background-repeat: no-repeat; /* 不重复图片 */

    width: 100%;

    font-size: 16px;

    padding: 12px 20px 12px 40px;

    border: 1px solid #ddd;

    margin-bottom: 12px; 

}


#myTable {

    border-collapse: collapse; 

    width: 100%; 

    border: 1px solid #ddd;

    font-size: 18px; 

}


#myTable th, #myTable td {

    text-align: left;

    padding: 12px;

}


#myTable tr {

    /* 表格添加边框 */

    border-bottom: 1px solid #ddd; 

}


#myTable tr.header, #myTable tr:hover {

    /* 表头及鼠标移动过 tr 时添加背景 */

    background-color: #f1f1f1;

}


</style>

<input type="text" id="myInput" onkeyup="myFunction()" placeholder="搜索...">

<table id="myTable">

  <tr class="header">

    <th style="width:60%;">名称</th>

    <th style="width:40%;">城市</th>

  </tr>

  <tr>

    <td>Alfreds Futterkiste</td>

    <td>Germany</td>

  </tr>

  <tr>

    <td>Berglunds snabbkop</td>

    <td>Sweden</td>

  </tr>

  <tr>

    <td>Island Trading</td>

    <td>UK</td>

  </tr>

  <tr>

    <td>Koniglich Essen</td>

    <td>Germany</td>

  </tr>

</table>

<script>

function myFunction() {

  // 声明变量

  var input, filter, table, tr, td, i;

  input = document.getElementById("myInput");

  filter = input.value.toUpperCase();

  table = document.getElementById("myTable");

  tr = table.getElementsByTagName("tr");


  // 循环表格每一行,查找匹配项

  for (i = 0; i < tr.length; i++) {

    td = tr[i].getElementsByTagName("td")[0];

    if (td) {

      if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {

        tr[i].style.display = "";

      } else {

        tr[i].style.display = "none";

      }

    } 

  }

}


</script>

全文详见:http://xpxw.com/?id=92

TOP


«    2024年10月    »
123456
78910111213
14151617181920
21222324252627
28293031
TOP 搜索
TOP 控制面板
您好,欢迎到访网站!
  查看权限
TOP 最新留言
    TOP 作者列表
    TOP 站点信息
    • 文章总数:163
    • 页面总数:0
    • 分类总数:6
    • 标签总数:20
    • 评论总数:0
    • 浏览总数:361552