2011-07-19 97 views

回答

1

在JavaScript中,您可以使用window.location來更改當前位置。

例如

if (result.error) { 
    document.getElementById('message').innerHTML = result.error; 
} else { 
    window.location = 'another.jsp'; 
}