gpt4 book ai didi

html - 有没有办法暂时禁用嵌入式视频的鼠标悬停事件?

转载 作者:行者123 更新时间:2023-11-28 00:17:28 24 4
gpt4 key购买 nike

我正在使用可调整大小的 jQuery plugin允许用户调整嵌入视频的大小。该视频是正在调整大小的 div 的子项。这是基础知识的 fiddle http://jsfiddle.net/jrzNW/1/ .

它工作正常,直到鼠标悬停在视频本身上,然后停止调整大小,直到鼠标移出视频。当点击事件开始时,我尝试将 div 设置为 show() 但这会产生更多问题而不是解决方案。如果有人能指出正确的方向,我将不胜感激。

最佳答案

好吧,你试过这样的事情吗?

$('#video').on('mouseover', function() { return false; });

这应该会中止为该事件注册的任何其他事情。参见 .on()

Returning false from an event handler will automatically call event.stopPropagation() and event.preventDefault(). A false value can also be passed for the handler as a shorthand for function(){ return false; }. So, $("a.disabled").on("click", false); attaches an event handler to all links with class "disabled" that prevents them from being followed when they are clicked and also stops the event from bubbling.

关于html - 有没有办法暂时禁用嵌入式视频的鼠标悬停事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11303211/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com