从PHP文件在HTML页面上触发JS函数

时间:2019-01-25 00:15:32

标签: javascript php html function call

我的问题如下:

我有两个文件。我们称它们为form.html和handler.php

您可能希望html文件是电子邮件表单,而php文件在那里可以发送。

现在,无论邮件是否成功发送,我都想从php文件触发html文件上的BS4警报。

<div class="alert alert-danger alert-dismissible fade show" role="alert">
     <strong>Whoops!</strong>Something went wrong there.. Please try again!
     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
             <span aria-hidden="true">&times;</span>
     </button>
</div>

<div class="alert alert-success alert-dismissible fade show" role="alert">
     <strong>Success!</strong>Mail successfully delivered. I will be in touch with you shortly!
     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
             <span aria-hidden="true">&times;</span>
     </button>
</div>

稍后应触发警报的php代码部分目前链接到已定义的页面。

if($mail_senden){
    header("Location: ".$url_ok); //Fehler beim Senden
    exit();
} else{
    header("Location: ".$url_fehler); //Fehler beim Senden
    exit();
}

有什么想法吗?

也许我应该提到我对引导程序很熟悉,但是我对js和php的了解非常有限(#scriptkidlifestyle)

1 个答案:

答案 0 :(得分:0)

如果您只想显示警报:

<script>
if (mail_sent) {
    alert("Mail sent !");
    }

else{
    alert("Mail not sent");
}
</script>