dscrn1974 2018-11-06 22:51
浏览 64
已采纳

laravel问题:淡出会话flash消息

Is there any way to set up a flash message session for laravel? Which means when I click the button to add or delete item(s), the flash messages are displayed. But Is there anyway to fade out?

in view file I put the code below:-

  <script>
      $(document).ready(function(){
          setTimeout(function() {
              $('#msg').fadeOut('fast');
          }, 30000);
      });
  </script>

  @if (session('status'))
      <div class="alert alert-success">
          <p class="msg"> {{ session('status') }}</p>
      </div>
  @endif

Controller file which I used for return the message.

return back()->with('status', $pro->pro_name . ' add to cart successfully');
  • 写回答

3条回答 默认 最新

  • dongqixian8474 2018-11-06 23:07
    关注

    Try this

    <script>
          $(document).ready(function(){
        $('.alert-success').fadeIn().delay(10000).fadeOut();
          });
      </script>
    
      @if (session('status'))
          <div class="alert alert-success">
              <p class="msg"> {{ session('status') }}</p>
          </div>
      @endif
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部