在我的 html 页面上,我有一个选择菜单,上面有几个选项。当我选择一个选项时,我希望 html 显示与该选项相关的表格。
例如,当我在选择菜单上选择管理员时,如何显示准确的表格?然后,当我选择工程时,它会隐藏管理表并显示工程表?
<div class="controls">
<select id="select01">
<option id="admin">Admin</option>
<option id="eng">Engineering</option>
</select
</div>
<div style="display:none" id="admin">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>ADMIN</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>mdo</td>
</tr>
</tbody>
</table>
</div>
<div style="display:none" id="eng">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>Engineering</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>mdo</td>
</tr>
</tbody>
</table>
</div>
谢谢你。