Javascript,HP 在没有 URL 的警报后重新加载

Posted

技术标签:

【中文标题】Javascript,HP 在没有 URL 的警报后重新加载【英文标题】:Javascript, HP reload after alert wihout URL 【发布时间】:2012-02-17 09:56:07 【问题描述】:

我在 Flash 站点中有一个 html 表单。表单是 php 处理的。帮我修复php文件,以便在处理完表单后,php将用户返回到flash页面并重新加载html表单。我尝试在 php 中使用 window.location 发送到页面,但没有成功。它会在 html 代码区域内产生一个白色矩形(可能是框架,但我不确定)。我怎样才能重新加载那个 html 表单?我不想使用 URL 加载整个页面,因为这太慢而且我无法复制 flash 状态。顺便说一句,下面是简化代码的精简版本。

网址: http://www.wix.com/efficertain/efficertainaccounting/accounting

表格代码: 名称 电话 最佳通话时间

PHP 代码:

$mail_to = 'info@efficertain.ca';
$subject = 'Message from a site visitor '.$field_name;

$body_message = 'From: '.$field_name."\n";
$body_message .= 'E-mail: '.$field_phone."\n";
$body_message .= 'Message: '.$field_when;

$headers = 'From: '.$field_email."\r\n";
$headers .= 'Reply-To: '.$field_email."\r\n";

$mail_status = mail($mail_to, $subject, $body_message, $headers);

if ($mail_status)  ?>
<script language="javascript" type="text/javascript">
    alert('Thank you for the message. We will contact you shortly.');
    window.location = 'http://www.wix.com/efficertain/efficertainaccounting/accounting';
</script>
<?php

else  ?>
<script language="javascript" type="text/javascript">
    alert('Message failed. Please, send an email to info@efficertain.ca');
    window.location = 'http://www.wix.com/efficertain/efficertainaccounting/accounting';
</script>
<?php

?>

【问题讨论】:

【参考方案1】:

你不应该在这里使用window.location,因为它会重新加载整个浏览器窗口。尝试使用document.location,您需要将表单的 URL 而不是整个页面的 URL 传递给它,因为您只想重新加载 iframe 内容。因此,根据上面的示例,您的 URL 将是 http://www.flashquix.com/embeds/fb4c83282b9342aa83952e74ad33dfdd?wrap=no&amp;gzip=true&amp;bg=transparent

document.location = 'http://www.flashquix.com/embeds/fb4c83282b9342aa83952e74ad33dfdd?wrap=no&gzip=true&bg=transparent';

【讨论】:

谢谢巴迪尔。工作得很好。现在我正在尝试获取表单中的 URL 并传输到 php,因为 php 将与多个源一起使用。不工作。可能是初学者的语法问题。【参考方案2】:

您已经在页面上添加了新内容.. 只需按照逻辑将该内容作为您的表单即可。

else  ?>
<script language="javascript" type="text/javascript">
    alert('Message failed. Please, send an email to info@efficertain.ca');
</script>
// INSERT YOUR FORM HTML HERE AND YOU'RE GOOD TO GO

【讨论】:

以上是关于Javascript,HP 在没有 URL 的警报后重新加载的主要内容,如果未能解决你的问题,请参考以下文章

如果按下警报,则在 OK 按钮后转到 URL

如何在 Javascript 的警报/确认框中显示图像?

有没有办法在 JavaScript 中模拟点击警报?

Firefox 上未显示 Javascript 警报框

javascript 警报消息似乎没有显示

Javascript关闭警报框