在JavaScript中,如果你想要从一个JSP页面跳转到另一个JSP页面,你可以使用以下几种方法:
```javascript
function redirectToPage() {
window.location.href = 'anotherPage.jsp';
}
```