13
인라인 onclick 속성으로 이벤트 전파를 중지하는 방법은 무엇입니까?
다음을 고려하세요: <div onclick="alert('you clicked the header')" class="header"> <span onclick="alert('you clicked inside the header');">something inside the header</span> </div> 사용자가 범위를 클릭 할 때 div의 클릭 이벤트가 발생하지 않도록하려면 어떻게해야합니까?
313
javascript
html
events
dom