是否有可能让popover上的隐藏更快?
我试图修补隐藏的'财产但到目前为止没有运气。
$(this).popover({
title: node.name,
html: true,
container: 'body',
placement: 'right'
hide: function() {
$(this).animate(function() {
//can something be done here?
});
}
});
感谢您的帮助。
答案 0 :(得分:0)
$(this).popover({
title: node.name,
html: true,
container: 'body',
placement: 'right',
delay: {"hide": 200} // as per the docs. Should require the quotation marks.... Try without if not hehe....
});