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时,会先触发父节点的点击事件。其他方法均无影响。不明白原理为何。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。