Twitter Bootstrap - 使用JSP include不允许页面滚动

时间:2013-05-21 08:09:33

标签: jsp twitter-bootstrap

我不熟悉我的UI使用Twitter Bootstrap。当我尝试在其他JSP页面中包含JSP页面(仅包含导航栏)时,我无法向下滚动页面。该页面因某种原因冻结。

这是我尝试包含在其他页面中的页面的代码。

homepage.jsp:

<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="http://code.jquery.com/jquery.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
</head>

<body>
    <div class='navbar navbar-fixed-top' >
     <div class='navbar navbar-inner' >
      <div class='container' style="height: auto;">
        <a class="brand" href="#">
            Sales Tracking Tool
        </a>
        <ul class="nav">
          <li class="active"><a href="#">Dashboard</a></li>
          <li><a href="#">Territories</a></li>
          <li><a href="#">Team</a></li>
          <li><a href="#">Dealers</a></li>
          <li><a href="#">Products</a></li>
          <li class="dropdown">
              <a href="#" class="dropdown-toggle" data-toggle="dropdown">My Activity<b class="caret"></b></a>
              <ul class="dropdown-menu">
                <li><a href="#">Performance</a></li>
                <li><a href="#">Profile</a></li>
                <li class="divider"></li>
                <li><a href="#">Log Out</a></li>
              </ul>
            </li>
          </ul>
      </div>
    </div> <!-- /navbar-inner -->

</body>
</html>

将此页面包含在我的其他JSP页面中:

<%@ include file="homepage.jsp" %>

它完全删除了滚动功能。

提前感谢您的帮助!

0 个答案:

没有答案