將資料傳遞到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中文網其他相關文章!