标签: javascript jquery html
例如,我在#dialogbox div中有一堆元素,我能以某种方式确保某些事件不会传播到它之外吗?
答案 0 :(得分:3)
使用此
$(element).on('click', function(event){ event.stopImmediatePropagation(); });