gpt4 book ai didi

javascript - 根据选择值过滤表行数

转载 作者:行者123 更新时间:2023-12-01 08:32:05 24 4
gpt4 key购买 nike

例如:选择4 -> 显示4行,选择6 -> 显示6行

最佳答案

选项值将是数字而不是字符串

<option value="4">4</option>

<option value="a1">4</option>

$('.filter-handle').on('change', function(e) {
var $rows = $('#table').find('tr');
var showRow = Number(e.target.value)+1;
$rows.hide().slice(0, showRow).show();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select class="filter-handle">
<option value="4">4</option>
<option value="6">6</option>
<option value="8">8</option>
</select>

<table class="filter-table-data" id="table">
<tr><th scope="col">Name</th><th scope="col">Des</th></tr>
<tr><td>Vu Tran</td><td>Sunnyvale</a></tr>
<tr><td>Michelle Case</td><td>Sunnyvale</a></tr>
<tr><td>Todd Linden</td><td>Madison</a></tr>
<tr><td>Michael Liston</td><td>Madison</a></tr>
<tr><td>Vu Tran</td><td>Sunnyvale</a></tr>
<tr><td>Michelle Case</td><td>Sunnyvale</a></tr>
<tr><td>Todd Linden</td><td>Madison</a></tr>
<tr><td>Michael Liston</td><td>Madison</a></tr>
<tr><td>Vu Tran</td><td>Sunnyvale</a></tr>
<tr><td>Michelle Case</td><td>Sunnyvale</a></tr>
<tr><td>Todd Linden</td><td>Madison</a></tr>
<tr><td>Michael Liston</td><td>Madison</a></tr>
</table>

关于javascript - 根据选择值过滤表行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60219192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com