如何在提交表单后将人们引导到另一个页面?

时间:2013-06-21 02:10:46

标签: php html5 forms function email

我目前正在撰写此页面:http://www.maschineuk.com/landing-page

当人们输入他们的姓名和电子邮件地址时,我希望他们可以重新定向到他们可以免费下载歌曲的页面......

目前它只是提出一个警告框。

<script>
$('form').simpleContactForm(
{
senderEmail : "", // if you leave this field empty, the mailing address will be the email field of the form
url : "php/simpleContactForm.php", // path to the plugin php file
type: "POST",  
subject : "FREE DOWNLOAD - MASCHINE",    
clearAfterSend : true,              
errorClass : "error",                               
success : function() {
    alert('Sent Successfully!');
}   
});

如何更改成功功能以便将它们引导到另一个页面?还是有另一种方法可以做到这一点吗?

在提交表单后发现以下代码将重定向:

window.location="http://www.exampleurl.com";

我是否可以这样做,以便只有在他们输入电子邮件时才能访问此页面?

我不希望人们在没有先输入电子邮件的情况下下载歌曲......

提前致谢!!!

1 个答案:

答案 0 :(得分:1)

添加window.location.href

success : function() {
    window.location.href = url;
}