2016-08-29 4 views
0

웹 사이트의 내비게이션 막대에 서버 측 포함을 사용하고 있습니다. 부트 스트랩 탐색 모음은 자체 파일에서 올바르게 작동합니다. 드롭 다운은 모바일에서 열리고 닫히지 만, 일단 내가 원하는 페이지에 포함 시키면 드롭 다운 만 드롭 다운되고 다시 돌아 가지 않습니다.부트 스트랩 드롭 다운이 asp 포함 파일로 작동하지 않습니다.

내가 뭘 잘못하고 있는지, 또는 무엇이 잘못 됐는지 알아낼 수 있는지 잘 모르겠습니다.

다음은 자체적으로 올바르게 작동하는 탐색 바에 대한 코드입니다.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> 
<link href="../_css/main.css" rel="stylesheet" type="text/css"> 

<nav class="navbar navbar-default navbar-fixed-top"> 
<div class="container-fluid"> 
    <div class="navbar-header"> 
     <a class="navbar-brand" href="/index.asp">O<span>NE</span> HEALTH <small>Nebraska One Health Resource Portal</small></a> 

     <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> 
      <span class="sr-only">Toggle navigation</span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
     </button>  
    </div> 
    <ul class="nav navbar-nav navbar-right collapse navbar-collapse"> 

     <li><a href="/health-resources.asp">Health Resources</a></li> 
     <li class="active"><a href="/around-the-globe.asp">Around the Globe</a></li> 

     <form class="navbar-form navbar-right search" role="search"> 
      <div class="input-group"> 
       <input type="text" class="form-control" placeholder="Search"> 
       <div class="input-group-btn"> 
        <button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button> 
       </div> 
      </div> 
     </form> 

    </ul> 
</div> 

다음
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> 

나는 시도하고 드롭 다운이 더 이상 작동하지 않는 파일을 포함하는 경우 여기에 내가있다 ....

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> 
<link href="../_css/main.css" rel="stylesheet" type="text/css"> 

<!-- NAVIGATION --> 
<!--#include virtual="/navigation/navigation.asp" --> 

    <div class="index-main"> 
    <div class="container"> 
     <div class="col-md-10 col-md-offset-1"> 
     <h1 style="text-align: center">One Health</h1> 
     <h4 style="text-align: center; line-height: 35px; font-weight: 300">One Health is a comprehensive approach to public health which recognizes that the health of the environment, animals (wild and domestic), and humans are interconnected. To have long-term success against diseases, we have to address all three areas because diseases in one group frequently spill over and affect the others. The Nebraska One Health Program is a grant-funded program to network, research, and educate producers, pest control operators, educators, public health officals, and other interested parties about addressing diseases in nature that affect humans and their animals.</h4> 
</div> 
</div> 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> 
+0

여기서 드롭 다운 버튼은 어디에 있습니까? – Aravind

+0

Abbey

+0

는 모바일 작동? – Aravind

답변

0

파일을 다운로드하여 HTML 페이지에 로컬로 포함시키고 한 번 확인하십시오.

+0

당신은 파일을 포함시키지 않는다는 것을 의미합니까? 내 페이지에 붙여 줘? 그냥 부스트 드롭 다운을 .asp 서버 쪽 포함으로 지원되는 경우 알아낼려고하는 것 같아요. 그렇다면 제대로 작동하는 방법 – Abbey

관련 문제