如何在Bootstrap中使用按钮导航carousel?

mf98qq94  于 2023-04-18  发布在  Bootstrap
关注(0)|答案(1)|浏览(184)

我有以下代码

<!DOCTYPE html>
<html>
  <head>
    <script src="https://code.jquery.com/jquery-2.1.4.js"></script>
    <link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script src="https://code.jquery.com/jquery-1.11.3.js"></script>
    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
    <script src="https://code.jquery.com/jquery.min.js"></script>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>JS Bin</title>
  </head>
  <body>
    <input type="button" id="myButton" value="click"/>
    <div class="container">
      <!--for carousel -->
      <div class="well">
        <div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval="false">
          <div class="carousel-inner">
            <div class="item active" id="first_carousel">                       
              <a href="#carousel-example-generic" role="button" data-slide="next" id="next_carousel" class="pull-right">
              <span class="glyphicon glyphicon-chevron-right"></span>
              </a>
            </div>
            <!-- First Carousel -->
            <div class="item" id="second_carousel">
              <!-- Second Carousel -->
              <a class="col-xs-1" href="#carousel-example-generic" role="button" data-slide="prev">
              <span class="glyphicon glyphicon-chevron-left"></span>
              </a>
              <strong>My Details</strong>          
            </div>
            <!-- Second Carousel -->
          </div>
        </div>
      </div>
      <!-- Well -->
    </div>
    <!-- Container -->
  </body>
</html>

当用户点击按钮时,我想导航到旋转木马的第二张幻灯片。我尝试了action="#second_slide”,但没有成功。有没有其他使用jQuery或Bootstrap的解决方法?
这是我目前得到的-http://jsbin.com/difawayufa/edit?html,output

sauutmhj

sauutmhj1#

你可以用jquery来做这件事:

<input type="button" id="myButton" value="click" onclick=" $('#carousel-example-generic').carousel('next');"/>

您还可以用途:$('# carousel-example-generic').carousel('prev ');
如果您想转到上一张幻灯片
编辑:如果你想转到特定的幻灯片,你可以使用幻灯片的索引:

<input type="button" id="myButton" value="click" onclick=" $('#carousel-example-generic').carousel(1);"/>

相关问题