我已经制作了一张带有Bootstrap Popover的地图。
当我将鼠标悬停在 IE7 中的左侧菜单上时。弹出框大约10%,然后延迟4或5秒。它加载。
有没有人遇到过Popover和IE7的任何问题?
我的JS设置如下:
$('.hover_over').popover(
{ html:true,
animation:true,
delay: 0
}
)
我也有一些条件IE7代码设置...
<!--[if IE 7]>
<style type="text/css">
.popover {
*max-width:70% !important;
}
.popover-title {
height: auto !important;
padding-bottom: 4px !important;
}
.tooltip_main {
margin-top: 5px !important;
}
</style>
<![endif]-->
任何帮助表示感谢。
由于