下拉菜单中的工具提示隐藏在下拉列表中

时间:2017-04-05 07:49:11

标签: html css angular2-directives

我有下拉列表并在其中我显示悬停在文本上的工具提示。但它显示在下拉列表下方虽然工具提示的z-index超过了它的父下拉列表。

1 个答案:

答案 0 :(得分:0)

尝试将container设置为body。 像这样:

$(selector).tooltip({
    container: 'body' //<--- use the container option
});
相关问题