qTip(jQuery 插件)如何删除页面中的所有 qtip?

2022-01-11 00:00:00 jquery jquery-plugins javascript qtip

我正在使用 jquery-plugin qTip.销毁页面中所有工具提示的命令是什么?

I'm using the jquery-plugin qTip. What's the command to destroy all tooltips in my page ?

我试过了:

$('.option img[title], span.taxonomy-image-link-alter img[title]').qtip("destroy");

但它没有工作......谢谢

But it didn't work... Thanks

推荐答案

我已经解决了 $(".qtip").remove();

相关文章