Bootstrap .popover(options)方法

要使用选项激活弹出窗口,您需要使用.popver(options)方法-

将弹出按钮设置为-

<button class="btn btn-default btn-md">
  Timings
</button>

设置弹出标题,标题等。所有这些都位于弹出选项下-

$(document).ready(function(){
  $('.btn-default').popover({title: "Event Timings", content: "3PM - 6PM", placement: "right"});
});

让我们看看.popover(method)的完整示例-

示例

<!DOCTYPE html>
<html>
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  </head>
<body>
  <div class="container">
    <h3>Information</h3>
    <p>Details about the event:</p>
    <div>
      <button class="btn btn-default btn-lg">Timings</button>
    </div>
  </div>

<script>
  $(document).ready(function(){
    $('.btn-default').popover({title: "Event Timings", content: "3PM - 6PM", placement: "right"});
  });
</script>

</body>
</html>