# js弹出层 **Repository Path**: wangsobin/js_popup_layer ## Basic Information - **Project Name**: js弹出层 - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-23 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 知识点: #### 1. 考察DOM知识 ### 2.考察事件的知识点 ### 3.阻止事件冒泡 ```javascript box.addEventListener('click', function (e) { e.stopPropagation(); } ```