更新我试图在联系表单上提交信息后回显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;
}
答案 0 :(得分:0)
您没有提供代码,但您可以尝试为div添加宽度和高度: 示例
#gotit {
float:right;
width: 125px;
height: 125px;
background-image:url(../gotit.png);
position:fixed;
z-index:20;
margin-top:50px;
}