这就是我所得到的;我使用codeigniter在PHP上创建了一些页面,当我在它上面时,我注意到当我在第4个uri段页面时,我的下拉切换停止工作,但是当我回到第3个uri段页面时,它工作正常完美。
dropdown not working -> http://localhost/mysite/console/dashboard/some_page
dropdown working -> http://localhost/mysite/console/dashboard
这是附件的图片,当然还有标题上的HTML代码
这是我的header.php代码
<div class="headerpanel">
<div class="headerright">
<div class="dropdown userinfo">
<a class="dropdown-toggle" data-toggle="dropdown" data-target="#" href="#">
<?php echo sprintf(lang('dashboard_page_username'), $account->fullname ); ?><b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><?php echo anchor('console/dashboard/edit_profile', lang('dashboard_page_profile')); ?></li>
<li><?php echo anchor('console/dashboard/account_settings', lang('dashboard_page_account')); ?></li>
<li><?php echo anchor('console/dashboard/privacy_settings', lang('dashboard_page_privacy')); ?></li>
<li class="divider"></li>
<li><?php echo anchor('console/logout', lang('dashboard_page_sign_out')); ?></li>
</ul>
</div>
</div>
</div>
超越
的所有页面http://localhost/mysite/console/dashboard
无效,但仪表板或第3个uri网段内的所有内容都能正常运行.. 有什么想法吗?