我正在使用fullcalendar库,我希望我的popover在悬停时保持打开状态。
以下是我在Chrome上按预期运行的代码。
element.popover({
html: true,
animation: false,
title: "Event",
content: html_content,
placement: "bottom",
trigger: "manual"
}).on("mouseenter", function() {
var _this = this;
$(this).popover("show");
$(".popover").on("mouseleave", function() {
$(_this).popover('hide');
});
}).on("mouseleave", function() {
var _this = this;
setTimeout(function() {
if ($(".popover:hover").length === 0) {
$(_this).popover("hide");
}
}, 100);
});
我在IE8上遇到的控制台错误是
语法错误,无法识别的表达式:unsupported pseudo:hover
非常感谢任何帮助。
谢谢。