原生js静态页面跳转到本文件夹下的另一个页面
时间: 2023-10-09 21:10:18 浏览: 208
可以通过以下代码实现原生js静态页面跳转到本文件夹下的另一个页面:
```javascript
window.location.href = "./anotherPage.html";
```
其中,"./"表示当前文件夹,"anotherPage.html"表示需要跳转的页面文件名。如果需要跳转到上一级文件夹下的页面,可以使用"../"。例如:
```javascript
window.location.href = "../anotherPage.html";
```
阅读全文