我使用了qtip2 jquery插件。如何点击另一个qTip时qTip不会消失。
答案 0 :(得分:0)
您必须使用hide: fixed
属性。这允许您单击工具提示而不会消失。 - http://qtip2.com/options#hide.fixed
通常它也与hide: delay
属性一起使用,以便当用户将鼠标从触发器移动到工具提示时,他有时间移动到工具提示,而不会先将其隐藏。
$("#red-box").qtip({
content: "this will stay for 1 second after you leave the box or tooltip",
hide: {
delay: 1000,
fixed: true
}
});