0

更新在联系表单上提交信息后,我试图回显一个 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;
}
4

1 回答 1

0

您没有提供代码,但您可以尝试为您的 div 添加宽度和高度:示例

  #gotit {
  float:right;
  width: 125px;
  height: 125px; 
  background-image:url(../gotit.png);
  position:fixed;
  z-index:20;
  margin-top:50px;
  }
于 2013-01-02T18:49:24.253 回答