当前位置: 首页 > 编程笔记 >

Bootstrap .modal(“ toggle”)方法

蒋向笛
2023-03-14
本文向大家介绍Bootstrap .modal(“ toggle”)方法,包括了Bootstrap .modal(“ toggle”)方法的使用技巧和注意事项,需要的朋友参考一下

在Bootstrap中使用.modal(“ toggle”)方法切换模式。

如下所示,模态通过单击按钮生成-

$(document).ready(function(){
  $("#button1").click(function(){
    $("#newModal").modal("toggle");
  });
});

这是上面使用的按钮-

<button type="button" class="btn btn-default btn-lg" id="button1">
  Modal One
</button>

您可以尝试运行以下代码以实现modal(“ toggle”)方法-

示例

<!DOCTYPE html>
<html lang="en">
  <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">
    <h2>Sample</h2>
    <button type="button" class="btn btn-default btn-lg" id="button1">Modal One</button>
    <div class="modal fade" id="newModal" role="dialog">
      <div class="modal-dialog">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal">×</button>
            <h4 class="modal-title">Sample Modal</h4>
          </div>
          <div class="modal-body">
            <p>Click outside to close it.</p>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
          </div>
       </div>
     </div>
   </div>
 </div>

 <script>
  $(document).ready(function(){
    $("#button1").click(function(){
      $("#newModal").modal("toggle");
    });
  });
 </script>

</body>
</html>
 类似资料:
  • <ion-list> <ion-item> <ion-label>Pepperoni</ion-label> <ion-toggle [(ngModel)]="pepperoni"></ion-toggle> </ion-item> <ion-item> <ion-label>Sausage</ion-label> <ion-toggle [(ngMod

  • 描述 (Description) toggle()方法切换显示每组匹配的元素。 语法 (Syntax) 以下是使用此方法的简单语法 - <i>selector</i>.toggle( ); 参数 (Parameters) 以下是此方法使用的所有参数的说明 - NA 例子 (Example) 以下是一个简单的例子,简单地显示了这种方法的用法 - <html> <head> <ti

  • Categories: Effects | Effects Core | Method Overrides | Methods .toggle( effect [, options ] [, duration ] [, complete ] )Returns: jQuery Description: 使用自定义特效显示或隐藏匹配的元素。 .toggle( effect [, options ] [

  • 切换开关类似与 HTML 的 checkbox 标签,但它更易于在移动设备上使用。 切换开关可以使用 toggle-assertive 来指定颜色。 该实例有是多个切换开关列表。注意,每个选项的 item 类后需要添加 item-toggle 类。 尝试一下 » 运行效果如下:

  • 描述 (Description) toggle( switch )方法切换基于传递的参数显示每组匹配的元素。 如果true参数显示所有元素,则false隐藏所有元素。 语法 (Syntax) 以下是使用此方法的简单语法 - <i>selector</i>.toggle( switch ); 参数 (Parameters) 以下是此方法使用的所有参数的说明 - switch - 用于切换显示的开关

  • ember-toggle Checkbox based Toggle Switch component with swipe/drag support for Ember. Based on this codepen.Here's the official demo using this component. Compatibility Ember.js v3.12 or above Ember