event.stopPropagation() Description: Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. 点击区域外隐藏该区域Example: <!DOCTYPE html> <html> <head> <meta content="charset=utf-8
<script> window.onload = function() { //要折叠的区域 var catalog = document.getElementById("div-id"); //如果全部列表都添加折叠使用document.getElementsByTagName("ul"); var childs = catalog.getElementsByTagName("ul"); for (var i = 0; i <