我已经建立了一个带有 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]-->
任何帮助表示赞赏。
谢谢