如何使用 jquery :不在 Marionette ItemView 事件中

How to use jquery :not in Marionette ItemView events

我们如何在 Marionette ItemView events 中使用 jquery :not 选择器?
例如。以下是错误的,不起作用 -
events: {
"click #div1 :not #div2: "check"
// Other events
}

参考 jquery :not- http://api.jquery.com/not-selector/

events: { 
  "click #div1:not(#div2)": "check"
}