Codeigniter - Hashtag无法在视图中工作

时间:2015-03-11 21:48:39

标签: php codeigniter

例如,标签#profile在codeigniter中不起作用。

我的观点:

<ul class="nav nav-tabs">
        <li class="active"><a href="#profile" data-toggle="tab" aria-expanded="true">User</a></li>
        <li class=""><a href="#edit-profile" data-toggle="tab" aria-expanded="false">Edit User</a></li>
        <li class=""><a href="#my-posts" data-toggle="tab" aria-expanded="false">Entries</a></li>
    </ul>

    <div class="tab-content">
        <div class="tab-pane fade active in" id="profile">
            ///mystuffhere
       </div>
       <div class="tab-pane fade" id="edit-profile'>
            ///mystuffhere
       </div>
       <div class="tab-pane fade" id="my-posts'>
           ///mystuffhere
       </div>

但是,我有一个分页功能,不能让我很好地使用href功能。我不知道如何将#profile放在网址之后,因为网址类似于http://localhost/admin/page/。由于没有.html, php延伸,我不知道该怎么做。我也不能像http://localhost/admin/page/#profilehttp://localhost/admin/page#profile/那样。请帮忙。感谢

0 个答案:

没有答案