增加工具提示的 z-index 参数

Saf*_*uen 1 css jquery jquery-ui

我正在使用 jquery 工具提示,我想增加它的 z-index 我试过这个,但它不起作用

<style>
.tooltip {
    z-index: 100;
}
Run Code Online (Sandbox Code Playgroud)

Joe*_*Joe 5

您要设计的类是.ui-tooltip,而不是.tooltip

<style type="text/css">
.ui-tooltip {
    z-index: 10000;
}
</style>
Run Code Online (Sandbox Code Playgroud)