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.
我们可以在弹出窗口中创建一个弹出窗口吗?
我有一个缩略图图像,当我单击它时,它会使用精美的框弹出大图像。现在我想以这样的方式,当我将鼠标悬停在大图像中的一个点上时,它应该在它上面弹出另一个图像。
如何使这成为可能。如果有人有链接示例,那么它会更有帮助。
您可以将悬停事件附加到特定部分。例如
$('.hover-section').hover(function() { // do what you want to here });
jQuery 悬停参考