我有一个问题。
我想在php数组生成的html表格中创建一个qiuck搜索框。
我的表格代码:
<table class="demo">
<thead>
<tr>
<th><input type="checkbox" class="check_all" ></th>
<th>ID</th>
<th>DB</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<?php foreach ($this->data as $key => $value_db) { ?>
<tr>
<td class="center"><input type="checkbox" value="<?= $value_db['id']; ?>" title="test_<?= $value_db['db']; ?>"></td>
<td class="center"><?= $value_db['id']; ?></td>
<td class="center">name_<?= $value_db['db']; ?></td>
<td></td>
</tr>
<?php } ?>
</tbody>
</table>
我不知道做uick box搜索。我不想搜索结果分页,我想要的是快速搜索数据库名称。
我尝试这样做
<script>
function SrchSubmit()
{
var valu= document.getElementById("valu").value;
url="mydommain?a=s&query={0.CT." + valu + "}";
location.href = url;
}
</script>
<form>
<input id="valu" style="margin-right: 15px;"/>
</form>
<input type="button" value="Search" onClick="SrchSubmit()" style="width:135px;font: bold 12px Arial;">
但它没有用,我不想在不同的窗口搜索结果。如何制作快速搜索框(html,pp或jQ)?