У меня проблема с удалением кнопки. PictureЧто-то не так с моей кнопкой delete
Если я нажму кнопку delete в строке 1, это сообщение покажет его. Но, если я нажму кнопку delete в строке 2 - n, он не покажет предупреждение.
Это мой JS и HTML код
\t \t \t <script type="text/javascript">
\t \t \t \t \t $('#AlertDelete').click(function(e) {
\t \t \t \t \t \t
\t \t \t \t \t swal({
\t \t \t \t \t title: "Yakin akan menghapus data?",
\t \t \t \t \t text: "Data yang sudah dihapus tidak akan bisa dikembalikan",
\t \t \t \t \t type: "warning",
\t \t \t \t \t showCancelButton: true,
\t \t \t \t \t confirmButtonColor: '#DD6B55',
\t \t \t \t \t confirmButtonText: 'Iya, hapus data!',
\t \t \t \t \t cancelButtonText: "Batalkan!",
\t \t \t \t \t confirmButtonClass: "btn-danger",
\t \t \t \t \t closeOnConfirm: false,
\t \t \t \t \t closeOnCancel: false
\t \t \t \t \t },
\t \t \t \t \t function(isConfirm) {
\t \t \t \t \t if (isConfirm) {
\t \t \t \t \t \t var data = $(this).serialize();
\t \t \t \t \t \t \t $.post('<?php echo base_url();?>index.php/agen/delete/<?php echo $row['id_agen'];?>', data);
\t \t \t \t \t \t swal("Terhapus!", "Data berhasil dihapus. Kamu akan diarahkan ke halaman sebelumnya secara otomatis", "success");
\t \t \t \t \t \t \t setTimeout("location.href = 'http://localhost/cvatikan/index.php/buku';",1000);
\t \t \t \t \t } else {
\t \t \t \t \t swal("Dibatalkan", "Hapus data dibatalkan", "error");
\t \t \t \t \t }
\t \t \t \t \t });
\t \t \t \t \t });
\t \t \t \t </script>
\t \t <h2 class="view-title">Kelola Agen</h2>
\t \t <div id="masonry" class="row">
\t \t \t <div class="module-wrapper masonry-item col-lg-12 col-md-12 col-sm-12 col-xs-12">
\t \t \t \t <section class="module module-headings">
\t \t \t \t \t <div class="module-inner">
\t \t \t \t \t \t <div class="module-heading">
\t \t \t \t \t \t \t <h3 class="module-title">Daftar Agen</h3>
\t \t \t \t \t \t \t <ul class="actions list-inline">
\t \t \t \t \t \t \t \t <li><a href="<?php echo base_url();?>index.php/Agen/manage"><span class="icon icon_plus"></span></a></li>
\t \t \t \t \t \t \t \t <!--<li><button type="button" class="btn btn-xs btn-primary" data-dismiss="modal"><span class="icon icon_plus"></span></button></li>-->
\t \t \t \t \t \t \t </ul>
\t \t \t \t \t \t \t
\t \t \t \t \t \t </div>
\t \t \t \t \t \t \t <div class="module-content collapse in" id="content-1">
\t \t \t \t \t \t \t \t <div class="module-content-inner no-padding-bottom">
\t \t \t \t \t \t \t \t \t <div class="table-responsive">
\t \t \t \t \t \t \t \t \t \t <!-- di sini kontenny -->
\t \t \t \t \t \t \t \t \t <table id="datatables-1" class="table table-striped display">
\t \t \t \t \t \t \t \t \t \t <thead>
\t \t \t \t \t \t \t \t \t \t \t <tr>
\t \t \t \t \t \t \t \t \t \t \t \t <th>No</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>ID Agen</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>Nama Agen</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>Alamat</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>No. Telp</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>Keterangan</th>
\t \t \t \t \t \t \t \t \t \t \t \t <th>Action</th>
\t \t \t \t \t \t \t \t \t \t \t </tr>
\t \t \t \t \t \t \t \t \t \t </thead>
\t \t \t \t \t \t \t \t \t \t <tbody>
\t \t \t \t \t \t \t \t \t \t \t <?php if(@$result):?>
\t \t \t \t \t \t \t \t \t \t \t \t <?php $i = 1;?>
\t \t \t \t \t \t \t \t \t \t \t \t <?php foreach ($result as $row):?>
\t \t \t \t \t \t \t \t \t \t \t \t \t <tr>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $i++;?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $row['id_agen'];?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $row['nama_agen'];?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $row['alamat'];?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $row['no_telp'];?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td><?php echo $row['keterangan'];?></td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <td>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <a href="<?php echo base_url();?>index.php/agen/manage/<?php echo $row['id_agen'];?>"class="btn btn-xs btn-primary"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Edit</a>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t <a class="btn btn-xs btn-danger" id="AlertDelete"><i class="fa fa-trash"></i>Delete</a>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t </td>
\t \t \t \t \t \t \t \t \t \t \t \t \t </tr>
\t \t \t \t \t \t \t \t \t \t \t \t <?php endforeach?>
\t \t \t \t \t \t \t \t \t \t \t <?php endif?>
\t \t \t \t \t \t \t \t \t \t </tbody>
\t \t \t \t \t \t \t \t \t </table>
\t \t \t \t \t \t \t \t \t </div>
\t \t \t \t \t \t \t \t </div>
\t \t \t \t \t \t \t </div>
\t \t \t \t \t \t </div>
\t \t \t \t \t </section>
\t \t \t \t </div>
\t \t \t </div>
Я надеюсь, что кто-то может помочь мне решить эту проблему. Thx before :)
Не могли бы вы подробно объяснить вашу проблему, создав новый вопрос и сохранив исходный код, например этот вопрос – GSB