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时,会先触发父节点的点击事件。其他方法均无影响。不明白原理为何。
原文地址:https://www.cnblogs.com/woostundy/p/4065645.html