更新在联系表单上提交信息后,我试图回显一个 div。我的网站在这里:http ://tinyurl.com/bdmhv7u
当您单击 rsvp 并输入信息时,我有一个想要显示的图形。使用此代码,它显示,但只是瞬间。任何想法表示赞赏。
<?php
ob_start();
session_start();
if( isset($_POST['submit'])) {
include("process.php");
unset($_POST['submit']);
} else {
}
ob_flush();
?>
<div id="gotit">
<div id="gotitimg">
<img src="images/gotit.png" width="100" height="100">
</div>
</div>
<script type="text/javascript" language="javascript">
$("#submit").click(function (event) {
$("#gotit").fadeIn(1000, function() {
});
});
</script>
#gotit {
position:fixed;
z-index:999;
margin-top:400px;
display:none;
width:100%;
}
#gotitimg {
float:right;
width:100px;
height:100px;
}