我有元素选择器,我想使用 jquery。但我不想破坏页面中已经存在的 jquery 实例。所以我为我的实例将 jQuery 重命名为 anotherJquery 并且在我使用之前一切正常
anotherJquery ("body *:not(.sg_ignore)").on("click", { 'self': this }, this.sgMousedown);
在此之后,所有点击事件都会转到我的 jquery 实例,即使在以下情况下:
anotherJquery ("body *").off("click", { 'self': this }, this.sgMousedown);
如何避免这种行为?