Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangMonday authored Nov 23, 2024
1 parent 9945b82 commit 9e92832
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ <h5>更新日志</h5>
</li>
<li class="list-group-item">
<strong>2024-11-24 V2.4.0</strong>:更新深色模式
</li>
</li>
</ul>
</div>
</div>
Expand All @@ -469,8 +469,8 @@ <h5>更新日志</h5>
◤ ▗▅▖◥▄ ▀◣  █▊
▐ ▕▎◥▖◣◤    ◢██
█◣ ◥▅█▀    ▐██◤
▐█▙▂    ◢██◤
◥██     ◢▄◤
▐█▙▂    ◢██◤
◥██    ◢▄◤
▀██▅▇▀
*/
// 自动调整列宽
Expand Down Expand Up @@ -541,6 +541,17 @@ <h5>更新日志</h5>
{ id: 50, name: "邹兴宇" }
];

// 初始化表格
function initializeTable() {
const tableBody = document.getElementById('table-body');
tableBody.innerHTML = '';
students.forEach(student => {
const row = document.createElement('tr');
row.innerHTML = `
<td>${student.id}</td>
<td>${student.name}</td>
<
// 初始化表格
function initializeTable() {
const tableBody = document.getElementById('table-body');
Expand Down

0 comments on commit 9e92832

Please sign in to comment.