由於在我的情況下有很多連接,所以我無法弄清楚在哪裏放置onclick = "return confirm('Are you sure?')
,所以請幫助我。這裏是我的代碼:如何彈出確認按鈕?
echo "<td><a href='" . base_url().'admin/play/delete/' .$row->id."onclick="."return confirm('Are you sure?')".'>" . "<img src='".base_url()."admin_css/images/delete.png' title='delete' "/></a>"/></a>"."<a href='".base_url().'admin/play/fav/' . $row->id . "'>" ."<img src='".base_url()."admin_css/images/star.png' title='edit'/>"."</a></td>";
需要幫助。
分解你的字符串連接到分離/多個命令,然後它將更容易調試。 –
開始使用模板引擎,這將節省很多時間.. – apieceofbart