zoukankan      html  css  js  c++  java
  • 定时器传参数

    定时器
    setTimeout() 和 setInterval() 在使用函数名作为调用句柄是都不能带参数,因此定义一个函数_checkMsg(),返回一个不带参数的函数,在
    这个函数内部调用外部函数checkMsg(),不需使用参数。
    setInterval(_checkMsg(isLogin),1000);
     
    function checkMsg(uid){
           $.ajax
              ({
                   type: "post",
                   url: "ajax_process.php?action=unread",
                   dataType: "json",
                   data: {"isLogin":uid},
                   success: function(json)
                   {
                     if(json.success == 1)
                       {
                          $('#new_message').fadeIn();
                       }else
                       {
                            $('#new_message').fadeOut();
                        }
                   }
                });
         }
     
         function _checkMsg(uid){
            return function(){
              checkMsg(uid);
            }
         }
  • 相关阅读:
    js中json对象取键和值
    canvas基本图形
    JavaScript数组实战小练习
    以面试为提纲的前端知识
    用js写三级联动
    JavaScript读取本地json文件
    用jquery写的json省市县三级联动下拉
    纯CSS实现3D按钮效果
    纯CSS仿windows系统loading效果
    一个有意思的标签<marquee>
  • 原文地址:https://www.cnblogs.com/chuangweili/p/5160154.html
Copyright © 2011-2022 走看看