location.href没有重定向到https:// urls

时间:2013-08-01 21:40:58

标签: php javascript

在表单的Thankyou页面上使用以下内容在5秒内重定向回表单,并用名称字段整齐地预填充值:

<script> setTimeout(function() {location.href = '<?php echo $var3['returnurl']  ?>?fullName[first]=<?php echo $var1['first'] ?>&fullName[last]=<?php echo $var2['last']  ?>'}, 5000); </script>

效果很好,直到returnurl字段为https:// url。 然后它在循环中停留在thankyou页面上,试图进行重定向。 没有涉及iframe ....已经尝试过top.location.href ......没有好...甚至尝试过location.replace

任何人都可以看到可能影响重定向到https:// url的代码的任何限制。

php文件中的代码......

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no"> 
  <meta name="HandheldFriendly" content="True">
  <meta name="MobileOptimized" content="width">

    <title>Thankyou</title>

    <style type="text/css">

body 
{
margin: 0px;
padding: 0px;
background: #fff;
font-family: Arial;
}

#message
{
position: absolute;
left: 50%;
width: 320px;
margin-left: -160px;
}

</style>

<?php
$answers = $_POST;
$var1 = array("first" => $answers[fullname][0]);
$var2 = array("last" => $answers[fullname][1]);
$var3 = array("returnurl" => $answers[returnurl]);
 ?> 

</head>

<body>

<script>
  setTimeout(function() {location.href = '<?php echo $var3['returnurl']  ?>?fullName[first]=<?php echo $var1['first'] ?>&fullName[last]=<?php echo $var2['last']  ?>'}, 5000); // this duration is in millisecs
</script>

<div id="message">

<p>&nbsp;</p>
<div style="text-align: center;"><h1>Thank You!</h1></div>
<div style="text-align: center;">Your submission has been received.</div>
<div style="text-align: center;">We're most grateful</div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;"><img src="http://www.mazeguy.net/bigsmilies/thumbsup.gif"></img></div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">You will return in 5 seconds</div><br />

</body>
</html>

以下是提交的结果......感谢页面来源显示...是的,安全页面网址没有通过......

<script>
setTimeout(function() {location.href = '?fullName[first]=&fullName[last]='}, 5000); //     this duration is in millisecs
</script>

1 个答案:

答案 0 :(得分:0)

您是否考虑过通过Ajax提交表单?用户永远不会离开表单提交页面。您只需显示带有确认消息的模态即可。这似乎比重定向用户更简单。它也可能是更好的用户体验。

我们假设您的表单有一个提交按钮,其中包含一个“提交”类。你可以在jQuery中使用这样的东西:

$(function() {
    $('body').on('click', '.submit', function(event) {
        event.preventDefault();
        var target = event.currenTarget;
        var form = $(target).closest('form');
        var action = $(form).attr('action');
        $.post(action, form.serialize())
            .done(function() {
                alert('Thanks for your submission!');
            })
            .fail(function() {
                alert('Oops! Something went wrong... PLease try again.');
            });
    });   
});

查看Bootstrap JS。他们有一些漂亮的模态你可以使用。

希望有所帮助。