作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$( "#list li:eq(0)" ).bind('mouseenter focus', function(event) {
jQuery("#logo img").css('top', '-132px');
console.log( event.type, " :: ", this.id );
}).bind('blur mouseleave', function(event) {
jQuery("#logo img").css('top', '-41px');
console.log( event.type, " :: ", this.id );
});
这段 jQuery 在鼠标悬停时效果很好,但在 Tab 键悬停时效果不佳!您遇到过类似的问题吗?
我已尝试使用 .bind 来触发这两个事件,但仍然无法正常工作!
如果在 mouseenter 上触发事件但没有焦点!
最佳答案
mouseenter
和 mouseleave
与键盘事件无关,并且当元素获得键盘焦点
时不会触发。
要让您的代码同时在 mouseenter
和 focus
上触发,这更接近:
$("#MesActivites li:eq(0)").bind("mouseenter focus", function (event) {
jQuery("#MesActivites ul:eq(1)").css('top', '45px').css('left', '-1px');
jQuery("#rfr-header-logo").css('display', 'none');
console.log(event.type, " :: ", this.id);
}).bind("mouseleave blur", function (event) {
jQuery("#MesActivites ul:eq(1)").css('top', '-1000px').css('left', '-1px');
jQuery("#rfr-header-logo").css('display', 'block');
console.log(event.type, " :: ", this.id);
});
关于jQuery mouseenter 与鼠标配合使用效果很好,但与 Tab 键配合使用效果不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7916754/
我是一名优秀的程序员,十分优秀!