棋子
来自勿忘草与永远的少女
⚔️ 棋子图鉴 ⚔️
点击头像或名称可跳转至详情页 | 表格支持实时筛选
<input type="text" id="searchInput" placeholder="🔍 输入关键词筛选(名称/羁绊/定位/元素...)" style="padding: 8px 15px; width: 300px; border-radius: 20px; border: 1px solid #ccc;">
</thead>
<tbody>
| [[天子|
]] || 天子 || 重装战士、游戏开发部 || 肉盾 || SR 3费 || 物理 || 虚数
</tbody>
| 立绘 | 名称 | 所属羁绊 | 定位 | 费用 | 元素 | 弱点元素 |
|---|
<script> $(function() {
$('#searchInput').on('keyup', function() {
var searchText = $(this).val().toLowerCase();
$('#character-table tbody tr').each(function() {
var rowText = $(this).text().toLowerCase();
if (rowText.indexOf(searchText) !== -1) {
$(this).show();
} else {
$(this).hide();
}
});
});
}); </script>