Jquery Fade 简单解决方案
在php中提交后如何淡入div?提交按钮的操作是一个action="",因此它“再次”加载同一页面,发送电子邮件后我有以下代码。在我的 css 中,我有一个 display:none in .success
<?php if(isset($emailSent) && $emailSent == true) { ?>
<script language=javascript">
$('.success').fadeIn('slow');
</script>
<div class="success">
<p> Thanks</p>
</div>
<?php } ?>
感谢您的回复,应该是一个简单的。
How can i fadein a div after the submit in php? The action of the submit button is a action="" so it loads "again" the same page i have the following code after sending the email. In my css i have a display:none in .success
<?php if(isset($emailSent) && $emailSent == true) { ?>
<script language=javascript">
$('.success').fadeIn('slow');
</script>
<div class="success">
<p> Thanks</p>
</div>
<?php } ?>
Thanks for the reply, should be a easy one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
需要使用jQuery的onload方法。
Need to use the onload method of jQuery.
将您的代码包装在 document.ready 中
Wrap your code in a document.ready