ul li 中判断当前点击的li是哪儿个

来源:互联网 发布:华元宠物用品淘宝真假 编辑:程序博客网 时间:2024/06/05 01:18
$('.clickBtn').live('click',function(){        $(this).each(function(){            if($(this).hasClass("modify") ){                action="modify";                }else{                    action="add";                    }        agentpar=$(this).parent().attr('id');        var strs= new Array(); //定义一数组        strs=agentpar.split("_"); //字符分割         parm='agent_id='+strs[1]+'&parent_id='+strs[2]+'&level='+strs[3]+'&action='+action;        $.zxxbox.ajax("/admin/agent/judge-opt-by-param/?"+parm);            });        }); 


0 0