The navigate function is established to navigate to another jsp. It can be called as far as once.
var result = new Result();
result.navigate("the next page url");
Calling | Returning |
---|---|
Result . navigate ( url ) | Result |
Result . navigate ( url , params ) | Result |
Parameters | Type | Description |
---|---|---|
url | String | The url which will be navigated. |
params | Object | The params which will be added after the url.
{param1:value1, param2:value2,...} |