0

我想创建一个对话框,以便用户在要删除帖子时确认他的操作。我现在唯一遇到的问题是,如果我确认对话框,将删除具有下一个 ArticleID 的帖子,而不是我要删除的特定帖子。我做错了什么或者我必须添加什么来防止这个错误?

$result = $link->query('SELECT * FROM artikel ORDER BY artikelID DESC');
while($record = $result->fetch_array()){

 echo '<div id="dialog-confirm" title="Delete post?">
</div>';

echo '<div class="artikel" style="clear: both;">
    <a href="?actie=aanpassen&artikelID='.$record['artikelID'].'" id="aanpassenpost"><img src="icons/aanpassen.png" height="15" width="15"></a>
        <img src="icons/delete.png" id="popup" height="15" width="15">
            <script>
jQuery(function($) {
    $("img#popup").click(function(event) {
             $( "#dialog-confirm" ).dialog({
              resizable: false,
              height:30,
              modal: true,
              buttons: {
                  "blabla": function(){
                    location.href = "?actie=verwijderen&artikelID='.$record['artikelID'].'";
                      $( this ).dialog( "close" );
                   },
              Cancel: function() {
                 $( this ).dialog( "close" );
                 }
              }
          });
        });
     });
     </script>' ;
    echo'   <h3>'.$record['titel'].'</h3>
        <p>'.$record['inhoud'].'</p>
    </div>';
}   

这是删除帖子的代码:

if(isset($_GET['actie']) && $_GET['actie'] == "verwijderen"){
$link->query('DELETE FROM artikel WHERE artikelID='.$_GET['artikelID'].';');
4

2 回答 2

1

如上所述。您的 jQuery 应该有一个删除对话框的功能,并且每个删除“按钮”都应该有某种数据。

echo '<img src="icons/delete.png" class="popup" height="15" width="15" data-artikelID=' . $record['artikelID'] . ' />'

然后是jQuery函数

$('img.popup').click(function(event) {
         $( "#dialog-confirm" ).dialog({
          resizable: false,
          height:30,
          modal: true,
          buttons: {
              "blabla": function() {
                  location.href = "?actie=verwijderen&artikelID=" + $(this).data('artikelID');
                  $( this ).dialog( "close" );
               },
          Cancel: function() {
             $( this ).dialog( "close" );
             }
          }
      });
    });
 });
于 2013-07-03T15:04:50.780 回答
1

您不需要为每个按钮创建一个重复的脚本。此外,您的 jQuery 选择器是相同的,因此按钮单击无法按您的预期工作。尝试这样的事情:

我们在这里所做的是在 id 的链接上设置数据属性,然后在 jquery 脚本中检索它并在重定向链接中使用它。

<?php

$result = $link->query('SELECT * FROM artikel ORDER BY artikelID DESC');

while ($record = $result->fetch_array()) : 

?>

<div class="artikel" style="clear: both;">
    <a href="?actie=aanpassen&artikelID=<?php echo $record['artikelID'] ?>" id="aanpassenpost">
        <img src="icons/aanpassen.png" height="15" width="15">
    </a>
    <img src="icons/delete.png" class="popup" data-artikel-id="<?php echo $record['artikelID'] ?>" height="15" width="15">
    <h3><?php echo $record['titel'] ?></h3>
    <p><?php echo $record['inhoud'] ?></p>
</div>

<?php endwhile; ?>   


<div id="dialog-confirm" title="Delete post?"></div>


<script>
jQuery(function($) {
    $("img.popup").click(function(event) {
        var id = $(this).attr('data-artikel-id');

        $( "#dialog-confirm" ).dialog({
            resizable: false,
            height:30,
            modal: true,
            buttons: {
                "blabla": function(){
                    location.href = "?actie=verwijderen&artikelID=" + id;
                    $(this).dialog( "close" );
               },
               Cancel: function() {
                   $( this ).dialog( "close" );
               }
           }
       });
    });
 });
 </script>
于 2013-07-03T15:04:54.247 回答