60

我的模态中有一个外部链接,我希望在用户单击该链接后隐藏模态。我怎么做?

这是我的代码:

<div class="modal hide fade" id="modalwindow">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
    <h3>Title</h3>
  </div>
  <div class="modal-body">
    <p>You need to do a search on google.com for that.</p>
  </div>
  <div class="modal-footer">
    <a id="closemodal" href="https://www.google.com" class="btn btn-primary" target="_blank">Launch google.com</a>
  </div>
</div>

<script type="text/javascript">
    $('#closemodal').modal('hide');
</script>
4

5 回答 5

121

您需要将模态隐藏调用绑定到onclick事件。

假设您使用的是 jQuery,您可以这样做:

$('#closemodal').click(function() {
    $('#modalwindow').modal('hide');
});

还要确保在文档完成加载后绑定点击事件:

$(function() {
   // Place the above code inside this block
});
enter code here
于 2012-10-16T12:56:38.983 回答
14

删除您的脚本,并更改​​ HTML:

<a id="closemodal" href="https://www.google.com" class="btn btn-primary close" data-dismiss="modal" target="_blank">Launch google.com</a>

编辑:请注意,目前这将不起作用,因为引导程序中尚不存在此功能。请参阅此处的问题

于 2012-10-16T12:57:41.737 回答
6

使用data-dismiss="modal". 在我使用 v3.3.5 的 Bootstrap 版本中,当 data-dismiss="modal"添加到如下所示的所需按钮时,它会漂亮地调用我的外部 Javascript (JQuery) 函数并神奇地关闭模式。太好了,我担心我不得不在另一个函数中调用一些模态隐藏并将其链接到真正的工作函数

 <a href="#" id="btnReleaseAll" class="btn btn-primary btn-default btn-small margin-right pull-right" data-dismiss="modal">Yes</a>

在一些外部脚本文件中,并且在我准备好的文档中,当然有一个用于单击该标识符 ID 的功能

 $("#divExamListHeader").on('click', '#btnReleaseAll', function () {
               // Do DatabaseMagic Here for a call a MVC ActionResult
于 2016-06-28T15:13:28.987 回答
0

如图制作。

  $(document).ready(function(){
    $('#myModal').modal('show');

    $('#myBtn').on('click', function(){
      $('#myModal').modal('show');
    });
    
  });
<br/>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!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.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>Activate Modal with JavaScript</h2>
  <!-- Trigger the modal with a button -->
  <button type="button" class="btn btn-info btn-lg" id="myBtn">Open Modal</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>Some text in the modal.</p>
        </div>

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

于 2018-11-13T20:00:22.030 回答
0

我尝试关闭一个加载了引导 CSS 的模式窗口。close() 方法并没有真正关闭模态窗口。所以我将显示样式添加为“无”。

    function closeDialog() {
        let d = document.getElementById('d')
        d.style.display = "none"
        d.close()
    }

HTML 代码在对话窗口中包含一个按钮。

<input type="submit" value="Confirm" onclick="closeDialog()"/>
于 2020-12-24T02:09:20.103 回答