javascript - Bootstrap : Modal dialog for editing data dynamically

标签 javascript bootstrap-modal

这个问题可能是重复的,但我不知道有什么好的关键词可以搜索来找到我正在寻找的解决方案。

我正在开发一个向用户显示表格的网站。该表的一列包含用户可以编辑的注释。为此,我为该列中的每一行添加了一个按钮,以打开引导模式对话框,用户可以在其中编辑与特定行关联的注释。 我还有一个 JavaScript 函数“saveNote(recordId)”,它从模式对话框的输入字段中读取输入的文本,然后通过 ajax post 将其发送到服务器。

现在我的问题是:如何以及在哪里存储当前正在编辑的行的 id,以便我可以将其传递给 saveNote() 函数?我在引导文档中找到了一个示例,但仅涵盖动态地将数据传递到模式对话框( Varying modal content )。有没有通用的方法可以在模式对话框中执行此操作,或者我是否需要在 JavaScript 中使用全局变量?

最佳答案

基本上,将每行的 id 放入行按钮的 data-id 属性中。然后将模态绑定(bind)到 show.bs.modal 事件,然后使用 $(e.latedTarget).data('id') 获取 data-id打开模式的按钮的 。检查评论以获取其他解释

$(function() {
  $('#exampleModal').on('show.bs.modal', function(e) {
    $('.modalTextInput').val('');
    let btn = $(e.relatedTarget); // e.related here is the element that opened the modal, specifically the row button
    let id = btn.data('id'); // this is how you get the of any `data` attribute of an element
    $('.saveEdit').data('id', id); // then pass it to the button inside the modal
  })

  $('.saveEdit').on('click', function() {
    let id = $(this).data('id'); // the rest is just the same
    saveNote(id);
    $('#exampleModal').modal('toggle'); // this is to close the modal after clicking the modal button
  })
})

function saveNote(id) {
  let text = $('.modalTextInput').val();
  $('.recentNote').data('note', text);
  console.log($('.recentNote').data('note'));
  console.log(text + ' --> ' + id);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <input class="modalTextInput form-control" placeholder="Text Here" />
      </div>
      <div class="modal-footer">
        <button type="button" class="saveEdit btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

<table class="table table-bordered">
  <tbody>
    <tr>
      <td>Some data here</td>
      <td>
        <button class="btn btn-success btn-sm" data-id="1" data-toggle="modal" data-target="#exampleModal">Edit</button>
      </td>
    </tr>
    <tr>
      <td>Another data here</td>
      <td>
        <button class="btn btn-success btn-sm" data-id="2" data-toggle="modal" data-target="#exampleModal">Edit</button>
      </td>
    </tr>
    <tr>
      <td>More data here</td>
      <td>
        <button class="btn btn-success btn-sm" data-id="3" data-toggle="modal" data-target="#exampleModal">Edit</button>
      </td>
    </tr>
  </tbody>
</table>

<p class="recentNote"></p>

关于javascript - Bootstrap : Modal dialog for editing data dynamically,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58763573/

相关文章:

javascript - 使 Bootstrap-Vue 模态可拖动

php - 如何从 Bootstrap 模式在ajax中发布数据?

javascript - 在 Android 手机上按下后退按钮时如何关闭 ui-bootstrap 模式?

html - AngularJS/HTML - 试图在自定义指令中转义关闭标签

javascript - Bootstrap 模式加载时触发事件

javascript - 为什么这个Jquery动画会出现随机跳转?

javascript - 使用 CryptoJS 加密数据并使用 AESCipherService 解密

javascript - float 最少的空白

javascript - 在 AngularJS 中加载子状态而不刷新父状态

javascript - Meteor 创建一个可滚动的 div