我在页面上有来来去去、隐藏和显示等动态元素。每次将元素附加到 dom 时,我不想绑定 tooltip(),而是设置一个全局处理程序(通过文档)。它可以工作,除了我想要一个用于多个“项目”的全局处理程序,这不起作用,我找不到一个很好的例子。这是我尝试过的:
$( document ).tooltip({ // works good if its the only one
items: ":not(.btn-box-share)",
... // close, content, etc (methods)
});
$( document ).tooltip({ //! replaces the previous bind to document..
items: '.btn-box-share',
... // different close, content, etc
});