Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/plf32upqf/CyberLantingAssignments/src/commit/28afd9565c8c8f57f97a78f65bf9aa451877643d/Assignment1/submit/frontend/script.js You should set ROOT_URL correctly, otherwise the web may not work correctly.

16 lines
551 B

document.querySelector('.tab-nav').addEventListener('click', function(e) {
const tabItem = e.target.closest('.tab-item');
if (!tabItem) return;
//全部清除acrive状态
document.querySelectorAll('.tab-item, .content-panel').forEach(el => {
el.classList.remove('active');
});
//标签页active
tabItem.classList.add('active');
//将当前的active状态添加到对应的标签内容中
const targetId = tabItem.dataset.target;
document.getElementById(targetId).classList.add('active');
});