消息设置

来源:官方· 作者 jizhicms· 15次点击 · 5个月前

定义

消息主要是购买和一些积分获取的提醒功能设置

模板

user/notify.html


全局消息获取

<a href="/user/notify" class="single-action-item">
  <span id="notifiy-icon" class=""></span>
  <img src="{$tpl}static/picture/notification-white.png" alt="" />
</a>
$(function(){
    
    var interval2 =  setInterval(function(){
    $.ajax({
         url:"/user/getmsg",
         async:true,
         type:"GET",
         success:function(r){
            var n = parseInt(r);
            if(n>0){
            $("#notifiy-icon").addClass('new-notification')
            }else{
            $("#notifiy-icon").removeClass('new-notification')
            }
            $("#notifiy-num").html(n);
            
         }
    })
    },30000);
    
})


被收藏 0  ∙  0 赞  
加入收藏
0 回复  
善言善语 (您需要 登录 后才能回复 没有账号 ?)

请先登录网站