完成王者荣耀资料站部分数据展示功能,要求通过选项卡,显示三个模块的数据:
- 英雄列表
- 局内道具
- 召唤师技能
html
<body>
<div id="menu">
<div>英雄列表</div>
<div>局部道具</div>
<div>召唤师技能</div>
</div>
<div id="content">
<div id="herolist">
<table class="tab">
<thead></thead>
<tbody></tbody>
</table>
</div>
<div id="localprops">
<table class="tab">
<thead></thead>
<tbody></tbody>
</table>
</div>
<div id="summonerskills">
<table class="tab">
<thead></thead>
<tbody></tbody>
</table>
</div>
</div>
css
<style>
body {
background: #e6f7ff;
}
#menu