2016-11-15 113 views
0

如何防止鼠标悬停在另一个单元上时qtip重叠。 问题是,当鼠标离开时鼠标悬停在另一个单元格上时,qtip不会立即隐藏,而前一个单元格也是可见的。如何防止qtip重叠

代码:

$(event.target).qtip({ 
           content: { text: tooltiptext, title: { text: "Info", button: 'Close' } }, 
           show: { 
            event: 'mouseover', 
            ready: true 
           }, 
           hide: { 
            event: 'mouseout' 
           }, 
           position: { 

            my: 'center', 
            at: 'bottom left', 
            adjust: { 
             screen: true 
            } 
           }, 
          }); 

回答