将数据传递到 Bootstrap 模态
当前的任务包括在单击超链接时打开 Bootstrap 模态并将关联的 ID 传递给模态。尽管进行了尝试,用户还是遇到了模式仍然不活动或缺少必要数据的问题。
解决方案
利用 jQuery 框架的 .on 事件处理程序被证明是一种有效的方法方法。考虑以下方法:
HTML
<a data-toggle="modal" data-id="ISBN564541" title="Add this item">
JavaScript
$(document).on("click", ".open-AddBookDialog", function () { var myBookId = $(this).data('id'); // Retrieve the ISBN from the clicked link $(".modal-body #bookId").val(myBookId); // Set the input field's value in the modal // It is unnecessary to manually call the modal as Bootstrap handles it with data-toggle="modal" });
使用此方法,单击超链接将打开模式并使用从链接检索到的 ID 填充输入字段。该解决方案有效解决了单击超链接时将数据传递到 Bootstrap 模式的问题。
以上是单击超链接时如何将数据传递到引导模式?的详细内容。更多信息请关注PHP中文网其他相关文章!