我不知道在我的案例中缺少哪个链接。所以,我想通过url传递数据(id)并在模态视图中显示它。到目前为止的代码是
<a data-id='$data[nip]' href='?v=biodata&n=$data[nip]' class='showme' data-toggle='modal' data-target='detilModal'>$data[nama]</a></td>
这是js
$(document).on("click", ".showme", function () {
var nip = $(this).data('id');
window.history.pushState("","Title Here","?v=biodata&n="+nip);
$('#detilModal').modal('show');
});
这是模态。当我重新加载页面和按钮
时,它工作正常<div class="modal-body">
<?php
$nip = $_GET['n'];echo $nip ?>.....
提前致谢