- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用可调整大小的 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()
andevent.preventDefault()
. A false value can also be passed for the handler as a shorthand forfunction(){ 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/
我是一名优秀的程序员,十分优秀!