我有一个普通的css / html / js模态窗口,它是一个简单的联系表单。它有一个发送按钮,我想在通过php处理联系表单后变成一个Thank You模式窗口。我该怎么做呢?
答案 0 :(得分:0)
尝试将其放在您的代码上
<?php
if($send)
{
echo"<script type='text/javascript'>";
echo "alert('Thank You.');";
echo "</script>";
}
else{
echo"<script type='text/javascript'>";
echo "alert('Fail.');";
echo "</script>";
}
?>