首页 > 代码库 > jQuery toggle方法的一个奇怪表现。
jQuery toggle方法的一个奇怪表现。
function buildTree(){ //$(‘.tree li:has(ul)‘).addClass(‘parent_li‘).find(‘ > span‘).attr(‘title‘, ‘Collapse this branch‘); $(‘.tree li.parent_li > span‘).on(‘click‘, function (e) { var children = $(this).parent(‘li.parent_li‘).find(‘ > ul > li‘); if (children.is(":visible")) { children.hide(‘fast‘); $(this).attr(‘title‘, ‘Expand this branch‘).find(‘ > i‘).addClass(‘icon-plus-sign‘).removeClass(‘icon-minus-sign‘); } else { children.show(‘fast‘); $(this).attr(‘title‘, ‘Collapse this branch‘).find(‘ > i‘).addClass(‘icon-minus-sign‘).removeClass(‘icon-plus-sign‘); } e.stopPropagation(); }); $(‘.child_li‘).on(‘click‘, function (e) { $(this).toggle( function(){ $("input",$(this)).attr("checked",true) }, function(){ $("input",$(this)).attr("checked",false) }); });}
本来是在做一个UL树,parent_li为父节点,child_li为子节点。写点击事件时发现,当子节点点击方法里用toggle时,会先触发父节点的点击事件。其他方法均无影响。不明白原理为何。
jQuery toggle方法的一个奇怪表现。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。