所以,我有一个带有背景图像(信封)的表格。提交后,我想留在同一页面上并折叠包含表单的部分 div 并仅显示一张带有谢谢 bla bla 的图像。如何做到这种平滑的折叠和替换?如果有人有一些想法或链接,我将不胜感激。
<script type="text/javascript">
$(document).ready(function() {
$("#form1").submit(function(){
$("#formplic").html("<img src='images/thanks.png'/>");
});
});
</script>
<div id="formplic"><img src="images/form.png"/></div>
<form id="form1" action="send.php" onSubmit="return chkForm(this)" name="form1" method="post" >
<textarea name="message" cols="4" rows="4" id="message" value=""></textarea>
<input type="text" id="name" name="name" value="" />
<input type="text" id="email" name="email" value="" />
<input type="submit" value="" id="submit" />
</form>