本文介绍了JavaScript的;将用户发送到另一个页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用Javascript函数将用户发送到另一个页面:
I am trying to send a user to another page using a Javascript Function:
<input type="button" name="confirm" value="nextpage" onClick="message()">
我的JavaScript:
And my JavaScript:
function message() {
ConfirmStatus = confirm("Install a Virus?");
if (ConfirmStatus == true) {
//Send user to another page
}
}
有谁知道如何将用户发送到另一个特定页面?
Does anyone know how to send a user to another specific page?
推荐答案
你的代码搞砸了,但是如果我做对了你可以使用以下内容:
your code got messed up, but if I got it right you can use the following:
location.href = 'http://www.google.com';
or
location.href = 'myrelativepage.php';
祝你好运!
但我必须对你说,
- Javascript可以关闭,所以你的功能不起作用。
其他选项是通过代码执行此操作:
Other option is to do this by code:
PHP: header('Location:的index.php');
C#: Response.Redirect(yourpage.aspx);
Java: response.sendRedirect();
Java: response.sendRedirect("http://www.google.com");
注意:
- 所有这些重定向必须放在任何输出到客户端之前好吗?
这篇关于JavaScript的;将用户发送到另一个页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!