2016-11-15 116 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 
            } 
           }, 
          }); 

回答