码迷,mamicode.com
首页 > 其他好文 > 详细

将全局变量转换为局部变量

时间:2015-08-04 15:28:52      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

 点dt显示dd的高度,如果用全局变量会产生冲突,解决的办法是将全局的变成局部的
-------全局变量有问题----------
 var flag = true;
 $(".accountList2 dt").click(function(){
    if(flag){
         $(this).next().animate({height : "10px"}, 300); 
    }else{
         $(this).next().animate({height : "0"}, 300);   
        flag=false;
    }
    flag =!flag;
  });
-------这样可以改成变量有问题----------
$(".accountList2 dt").each(function() {
    var flag = true;
    $(this).click(function() {
        if (flag) {
            $(this).next().animate({
                height: "10px"
            }, 300);
        } else {
            $(this).next().animate({
                height: "0"
            }, 300);
            flag = false;
        }
        flag = !flag;
    });
});


---html---


<dl class="accountList2">
    <dt>股东0001</dt>
    <dd>........</dd>
    <dt>股东0002</dt>
    <dd>........</dd>
    <dt>股东0003</dt>
    <dd>........</dd>
 </dl>

 

将全局变量转换为局部变量

标签:

原文地址:http://www.cnblogs.com/yanwen2015/p/4701927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!