前端之家收集整理的这篇文章主要介绍了
ul li 中判断当前点击的li是哪儿个,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$('.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);
});
});
原文链接:https://www.f2er.com/ajax/164557.html