【问题标题】:How to display an Alert in Bootstrap Modal如何在引导模式中显示警报
【发布时间】:2016-04-22 21:51:48
【问题描述】:

$(window).load(function(){
  $('.alertbox').click(function(){
    alert('You Clicked on Click Here Button');
    });
  })
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"> </script>
  
<div>
  <a class="alertbox" href="#clicked"> Click Here</a>
</div>

我希望在引导模式中显示警报。

【问题讨论】:

  • 不能包含 JS 警告框。如果您想要在模态框中使用类似警告框的东西,请使用 CSS/HTML 设计它并使用 JS/jQuery 触发它
  • 一些关于使用引导程序创建模式的信息w3schools.com/bootstrap/bootstrap_modal.aspgetbootstrap.com/javascript/#modals
  • 您是否试图显示一个带有“警报”文本的模式?或者您是否尝试从模式中的链接触发浏览器警报?

标签: javascript jquery html twitter-bootstrap


【解决方案1】:

在模态正文中创建错误 div。并设置错误

$(document).ready(function(){
  $('#alertbox').click(function(){
    $("#error").html("You Clicked on Click here Button");
      $('#myModal').modal("show");
    });
  });
<!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://ajax.googleapis.com/ajax/libs/jquery/3.2.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>Modal Example</h2>
  <!-- Trigger the modal with a button -->
  <button type="button" class="btn btn-info btn-lg" id="alertbox">Click here</button>

  <!-- Modal -->
  <div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog">
    
      <!-- Modal content-->
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal">&times;</button>
          <h4 class="modal-title">Modal Header</h4>
        </div>
        <div class="modal-body">
          <p id="error"></p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>
      
    </div>
  </div>
  
</div>

</body>
</html>

【讨论】:

    【解决方案2】:

    可能我没有正确理解您的问题,但您不能使用警报功能在页面元素内显示消息。 Alert 在页面 dom 之外显示系统警报。

    如果您想在模态框内显示消息,您必须在页面 html 中包含(或注入)模态标记,然后您只需通过引导函数显示/隐藏模态。

    你有一个很好的例子here

    【讨论】:

      猜你喜欢
      • 2020-07-28
      • 1970-01-01
      • 2020-08-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-10-20
      • 2015-05-25
      • 1970-01-01
      相关资源
      最近更新 更多