单击 div 时我需要获取最多的元素......比如这个......
<div id="show_trash_id" class="switch switch-xs">
<input type="checkbox"/>
<span class="slider round">
<span class="text-on">ON</span>
<span class="text-off">OFF</span>
</span>
</div>
我认为这与某种冒泡或捕获效果有关。但是我无法处理...我已经尝试过event.stopPropagation()
或使用useCature
两者均未成功。
function capture (event) {
event.stopPropagation();
console.log(event.target);
}
document.querySelector('#show_trash_id').addEventListener('click', capture, true)
简而言之,我想要在控制台中显示以下波纹管:
<div id="show_trash_id" class="switch switch-xs">
<input type="checkbox"/>
<span class="slider round">
<span class="text-on">ON</span>
<span class="text-off">OFF</span>
</span>
</div>