24

引导模式是否有 onload 事件?我想在打开模式时调用 http GET 请求以使用来自 rest api 的数据填充模式。我在模态中有一个表单,我在表单的 onload 事件上调用了 GET 函数,但它不起作用。

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title" id="myModalLabel">Agent details:</h4>
      </div>
      <div class="modal-body">

<form onload="getData()" style= "font-size: 16pt">
4

2 回答 2

52

根据文档,您可以收听节目或显示的事件。

从文档:

show.bs.modal => 该事件在调用 show 实例方法时立即触发。

shown.bs.modal => 当模式对用户可见时触发此事件(将等待 CSS 转换完成)​​。

$('#myModal').on('show.bs.modal', function () {
  // do something…
})
于 2013-11-21T14:41:19.560 回答
5

我发现最好的方法是将 onclick 属性添加到调用模式的 html 元素中。

<button type="button" onclick="PopulateAddModal()" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#AddModal">Add</button>

然后在你的javascript..

    function PopulateAddModal() {
      //do stuff here...
      }

这将确保您的代码在调用模式后立即运行。否则,javascript 代码将不会运行,直到模态完全完成它的“淡入”动画。

于 2015-08-14T16:02:14.677 回答