IE7/8: div loses :hover if mouse moves over an iframe which is inside the div!(IE7/8:如果鼠标移到 div 内的 iframe 上,则 div 会丢失 :hover!)
问题描述
我正在尝试在列表中添加 facebooklike 按钮"和 twittertweet 按钮",我的列表结构是:
I'm trying to add facebook "like button" and twitter "tweet button" on a list, my list structure is:
<list>
<listItem>
<iframeContainer>
<iframe/>
</iframeContainer>
</listitem>
</list>
css 是:
listItem iframeContainer {display:none;}
listItem:hover iframeContainer {display:block;}
IE7/8:问题是当鼠标移到 iframe 上时,listItem 失去焦点.
IE7/8: the problem is when mouse moves over the iframe the listItem loses its focus.
我尝试通过 csshover.htc 修复它,但它没有修复它.
I tried to fix it by csshover.htc but it doesn't fix it.
它在其他浏览器中运行良好.
It works fine in other browsers.
你可以在这里现场查看:
http://bit.ly/hsFtq6
您需要在网站上注册,它既简单又快捷:)
you can check it out live here:
http://bit.ly/hsFtq6
you need to signup at website, it's easy and fast :)
谢谢
推荐答案
我已经用和csshover.htc一样的方法修复了,虽然添加csshover.htc没有修复!
I've fixed it by the same way as csshover.htc though adding csshover.htc didn't fix it!
if($.browser.msie){
$('.item').live('mouseenter',function() {
$(this).addClass('hover');
});
$('.item iframe').live('hover',function() {
$(this).parents(".item").addClass('hover');
});
$(".item").live('mouseleave',function() {
$(this).removeClass('hover');
});
}
css:
.item:hover, .item.hover {background-color:#555;}
这篇关于IE7/8:如果鼠标移到 div 内的 iframe 上,则 div 会丢失 :hover!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IE7/8:如果鼠标移到 div 内的 iframe 上,则 div 会丢失 :hover!
基础教程推荐
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01