工具提示有时不隐藏

时间:2014-11-28 07:54:32

标签: javascript jquery css twitter-bootstrap

bootstrap tooltip

如上面的屏幕截图所示,bootstrap无法隐藏。我使用下面的代码:

$this.tooltip({
                                    'placement': function (tip, element) {
                                        var position = $(element).position();
                                        if ((position.top) + 150 > $(window).height()) {
                                            return "top"
                                        }
                                        return "bottom"
                                    },
                                    'title': $this.attr("title"),
                                    'trigger': 'hover',
                                    'animation': true,
                                    'html': true
                                });

可能是什么问题,如何解决这个问题?

Chrome Version 38.0.2125.111 m

0 个答案:

没有答案