使弹出警报在php上确认

时间:2018-09-24 07:45:57

标签: database codeigniter model-view-controller popup

我要在删除项目时发出弹出警报,但是我使用echo,我只了解使用a href

我想要这样

<a href="<?=base_url('index.php/buku/hapus/'.$i->kode_buku)?>" class="btn btn-danger btn-sm" onclick="return confirm('Are  you sure?')">

我想将该功能提供给下面的代码

<?php echo anchor ('barang/delete/'.$u->kode_barang,'Hapus') ; ?>

但是在哪里以及如何将其添加到php程序中?我需要向控制器添加一些东西吗?

1 个答案:

答案 0 :(得分:0)

根据文档:https://www.codeigniter.com/user_guide/helpers/url_helper.html#anchor

$array = array(
    'class' => 'btn',
    'onclick' => "return confirm('Are  you sure?');",
);

echo anchor('someurl/here', 'Name', $array);

尽管对我而言,最好采用第一种方法,并且看起来不太冗长。仅仅因为该功能存在并不意味着您必须使用它。