📜  如何使用 javascript 代码示例打开 html 文件

📅  最后修改于: 2022-03-11 15:02:19.256000             🧑  作者: Mango

代码示例1
// In my case, I used a button to activate this function:
function myFunction() {
    window.location.href = 'index.html';
}