4 lines
137 B
JavaScript
Executable File
4 lines
137 B
JavaScript
Executable File
document.getElementById('btn').addEventListener('click', function() {
|
|
window.location.href = '/home'; // 跳转到 /home 路由
|
|
});
|