这是我在jsfiddle中的
example,将鼠标悬停在明尼苏达州上方以查看qtip弹出窗口.我正在使用
qTip jquery插件,我不得不让qtip保持足够长的时间让某人点击工具提示上的链接.我在scenerios上试过各种各样的东西让它保持开放.阅读
documentation这似乎很容易,但我尝试了这些,没有运气.我试过这些
hide: { when: 'mouSEOut',fixed: true }
和
hide: { fixed: true,delay: 1000 }
还有很多其他的东西都没有保留工具提示,因此用户可以点击链接.令人恼火的是在reference页面上.如果你点击任何一个示例链接他们正在做我想做的事情,我去了源,如果看起来他们正在使用
hide: 'unfocus',
和
hide: { fixed: true,delay: 240 },
但我试过了两个,工具提示不会保持打开状态.我错过了什么吗?
解决方法
由于看起来你的小费的位置偏向右边,试试这个:
$(this).qtip( { hide:{ //moved hide to here,delay:500,//give a small delay to allow the user to mouse over it. fixed:true },content: $("." + test).html(),style: { name: 'dark',style: { border: 1,cursor: 'pointer',padding: '5px 8px',name: 'blue' },border: {},tip: true // Apply a tip at the default tooltip corner } });
已更新fiddle.