我在Flash网站中有一个html表单。表单是php处理的。帮我修复php文件,以便在处理完表单后,php会将用户返回到flash页面并重新加载html表单。我在php中尝试了一个window.location发送到页面但是没有用。它导致html代码区域内的白色矩形(可能是框架,但我不确定)。我怎样才能重新加载那个html表单?我不想使用URL加载整个页面,因为这太慢了,我无法复制Flash状态。顺便说一句,下面是一个简化的代码的精简版本。
URL: 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
}
?>
答案 0 :(得分:0)
您不应在此处使用window.location
,因为它会重新加载整个浏览器窗口。尝试使用document.location
,您需要传递表单的网址而不是整个网页的网址,因为您只想重新加载iframe内容。因此,根据上面的示例,您的网址为http://www.flashquix.com/embeds/fb4c83282b9342aa83952e74ad33dfdd?wrap=no&gzip=true&bg=transparent
。
document.location = 'http://www.flashquix.com/embeds/fb4c83282b9342aa83952e74ad33dfdd?wrap=no&gzip=true&bg=transparent';
答案 1 :(得分:0)
您已经在页面上添加了新内容..只需按照逻辑并将该内容作为您的表单。
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