Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用模态窗口 qTip。一切正常,但我想知道是否可以在 onMouseout 或 mouseleave 时隐藏模式窗口......以及如何?
这是我当前的设置:
hide: { when: { event: 'unfocus' } },
当然,不聚焦仅在单击外部时有效。有任何想法吗?
你也可以试试这个:
hide: {when: {event:'mouseout unfocus'}, fixed: true, delay: 500}
hide: { when: { event: 'mouseout' } }