Jquery Fade 简单解决方案

发布于 2024-12-13 07:25:11 字数 409 浏览 1 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情场扛把子 2024-12-20 07:25:11
$(function(){
   $('.success').fadeIn('slow');
});//DONE ^_^

需要使用jQuery的onload方法。

$(function(){
   $('.success').fadeIn('slow');
});//DONE ^_^

Need to use the onload method of jQuery.

心凉怎暖 2024-12-20 07:25:11

将您的代码包装在 document.ready 中

<script language=javascript">
    $(function(){ 
        $('.success').fadeIn('slow');
     }); 
  </script>

Wrap your code in a document.ready

<script language=javascript">
    $(function(){ 
        $('.success').fadeIn('slow');
     }); 
  </script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文