监听的事件具体,这样不会联动
主要代码内容
<script><br> $('.two>a').click(function () {<br> $(this).parent().addClass('active').siblings().removeClass('active');<br><br> var three = $(this).parent().find('ul');<br> if (three.css('display') == 'none') {<br> three.show();<br> }else {<br> three.hide();<br> }<br> });</p> <p>$('.five').click(function (){<br> $(this).addClass('activee').siblings().removeClass('activee');<br> })<br> </script>
以上是菜单点击事件实例代码的详细内容。更多信息请关注PHP中文网其他相关文章!