ナビゲーションバー内に、ポップオーバー機能を備えたヘルプボタンがあります。
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<div class="nav pull-right">
<div class="cb_inline_block">
<a class="btn btn-small cb_inline_block icon timezone_help" data-content="{% trans 'hahaha' %}" rel="popover" href="#" data-original-title="{% trans 'Time Zone' %}"><i class="icon-question-sign icon-large"></i></a>
Javascript:
$(document).ready(function () { $('.timezone_help').click(show_timezone_help); };
function show_timezone_help(event){
event.preventDefault();
$('.timezone_help').popover('show');
}
しかし、それをクリックすると、ポップオーバーはナビゲーションバーの後ろに隠れます。
本当にz-indexを手動で設定する必要がありますか?それは苦痛だろう。本当に私は何か間違ったことをしているに違いありません。ありがとう。