除了一个元素及其子元素外,整个正文内容应该有mouseup
个事件。我编写了以下代码来实现它,
$('body > *:not(.element_to_be_excluded)').mouseup(...);
这在Firefox中运行良好。单击.element_to_be_excluded
内部时不会触发mouseup事件。但是在IE mouseup
中,事件在身体内部被触发。它不排除.element_to_be_excluded
。有什么问题或有什么解决方法可以解决这个问题吗?