2012-10-01 69 views
4

我一直在使用bootstrap在網站上工作,我使用了手風琴(Collapse)JavaScript功能。bootstrap accordian不能與IE一起工作

它正在與所有的瀏覽器,除IE瀏覽器不工作。

http://bonanza.mocorner.com/en/success_story/

以上URL,如果使用FF或Chrome訪問你可以看到,手風琴是工作的罰款。當使用IE瀏覽器時,沒有任何想法?雖然我沒有列入我的HTML頭

<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> 
<!--[if lt IE 9]> 
    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> 
<![endif]--> 

以下下面是我的HTML代碼

<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" > 
<head> 
    <meta charset="utf-8"> 


    <!-- CSS Styling starts here --> 
    <link rel="stylesheet" type="text/css" href="/public_assets/bootstrap/css/bootstrap.min.css" /> 
    <link rel="stylesheet" type="text/css" href="/public_assets/bootstrap/css/bootstrap-responsive.min.css" /> 
    <link rel="stylesheet" type="text/css" href="/public_assets/base.css" /> 
    <!-- CSS Styling ends here --> 

    <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> 
    <!--[if lt IE 9]> 
     <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> 
    <![endif]--> 


    <!-- JS Starts here --> 
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> 
    <script type="text/javascript" src="/public_assets/bootstrap/js/bootstrap.min.js"></script> 

    <script type="text/javascript" src="/en/js/common_js.js"></script> 
    <script type="text/javascript" src="/public_assets/js/jquery.cookie.js"></script> 

    <!-- JS ends here --> 


</head> 
<body> 
.............. 

     <script> 
      $(".collapse").collapse(); 
     </script> 

     <div class="collapse in"> 
      <div id="accordion-group" class="accordion"> 





        <div class="accordion-group"> 
         <div class="accordion-heading"> 
          <a href="#collapse-2" data-parent="#accordion-group" data-toggle="collapse" class="accordion-toggle"> 
           Checking Story (published on Sept. 30, 2012, 1:43 p.m.) 

          </a> 
         </div> 
         <div class="accordion-body collapse" id="collapse-2" style="height: 0px;"> 
          <div class="accordion-inner"> 
           <p><img src="/public_media/success_story/2012/09/30/happyFamily.jpg" class="img-rounded" style="float: left; margin-right: 5px;" /> Checking Story...</p> 

          </div> 
         </div> 
        </div> 








        <div class="accordion-group"> 
         <div class="accordion-heading"> 
          <a href="#collapse-1" data-parent="#accordion-group" data-toggle="collapse" class="accordion-toggle"> 
           The story of our lives (published on Sept. 30, 2012, 10:20 a.m.) 

          </a> 
         </div> 
         <div class="accordion-body collapse" id="collapse-1" style="height: 0px;"> 
          <div class="accordion-inner"> 
           <p><img src="/public_media/success_story/2012/09/30/promo_bts.jpg" class="img-rounded" style="float: left; margin-right: 5px;" /> The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives The story of our lives.</p> 

          </div> 
         </div> 
        </div> 





      </div> 
     </div> 




     </div> 
    </div> 



</div> 
</body> 
</html> 
+0

您應該嘗試本地化問題並在此處粘貼代碼。 – Pavlo

+0

我不太確定如何粘貼代碼。我應該只粘貼HTML嗎?任何方式,我現在將粘貼HTML,如果你需要進一步的細節讓我知道 –

+0

好吧,我剛剛添加HTML代碼的問題:) ..我希望它會幫助 –

回答

6

這是一個2.1.0 bug,這是在2.1.1解決 - 你應該更新你的引導文件。

相關問題