【问题标题】:Multiple dialog confirm only works once多个对话框确认只工作一次
【发布时间】:2012-03-01 00:15:27
【问题描述】:

我有这个 php 页面,我在其中进行了从数据库返回数据的搜索。数据显示在一个 html 表格中,并且在每个项目中都有一个删除项目的选项。当我单击此删除按钮时,它应该打开一个对话框(我使用的是 jquery ui),我必须在其中选择是否要取消或确认操作。一切正常,然后我注意到该对话框仅适用于表格的第一项。当我单击其他的时,他们只是完成删除操作而没有确认。这是代码,如果有人可以帮助我,我会很高兴:

action.js

   (...)
   var buttonClicked = false;

   $(function(){           
      $('#delete').click(function(event){
          if(!buttonClicked){
              event.preventDefault();
              $('#dialogConfirm').dialog('open');                  
          }              
      });           
      $('#dialogConfirm').dialog({
         autoOpen: false,
         modal: true,
         width: 250,
         height: 225,
         buttons: {
             "No": function() {    
                 buttonClicked = false;
                 $(this).dialog('close'); },
             "Yes": function() {    
                 buttonClicked = true;
                 $(this).dialog('close');
                 document.forms['formdelete'].submit();}
         }             
      });          
   });
   (...)

mypage.php(生成表格的函数的相关部分)

(...)
function listResults($query, $num, $type) {    
if($tipo == "product") {
    if($num > 1) {
        echo "<hr>";
        echo "<h3>$num occurrences were found:</h3>";
        echo "<div id='dialogConfirm' title='Warning!'><p>Are you sure you want to delete it?</p></div>";

    echo "<table id='table1'>";
    echo "<tr><td><b>Product</b></td> <td><b>Label</b></td></tr>";
    while($row = mysql_fetch_assoc($query)) {   
    echo "<tr id='icons'><td>" . $row['product'] . "</td><td>" . $row['label'] . "</td>
         <td><form action='#' method='POST'><button class='ui-state-default ui-corner-all' title='View'><span class='ui-icon ui-icon-image'></span></form></td>
         <td><form action='editProduct.php' method='POST'><input type='hidden' name='id' value='".$row['id']."' /><button class='ui-state-default ui-corner-all' title='Edit'><span class='ui-icon ui-icon-pencil'></span></form></td> 
         <td><form action='delete.php' method='POST' id='formdelete'><input type='hidden' name='produto' value='".$row['id']."' /><button class='ui-state-default ui-corner-all' id='delete' title='Delete'><span class='ui-icon ui-icon-trash'></span></form></td></tr>";
    }
    echo "</table>";         
    }
    else {
        if($num == 0) {
            echo "<h1>No occurrence was found.</h1>";            
        }
        else {
            echo "<h1>$num occurrence was found:</h1>";
            while($array = mysql_fetch_assoc($query)) {
            echo "<li>" . $array['product'] . "</li>" . $array['label'] . "<br><br>"; 
            }
        }
    } 
    (...)

生成的html:

<div id='dialogConfirm' title='Warning!'><p>Are you sure you want to delete it?</p>    </div>

<table id='table1'>
<tr>
    <td><b>Product</b></td> 
    <td><b>Label</b></td>
</tr>

<tr id='icons'><td>IBP</td><td>Dixtal</td>
<td><form action='#' method='POST'>
    <button class='ui-state-default ui-corner-all' title='View'><span class='ui-icon ui-icon-image'></span></button>
</form></td>

<td><form action='editProduct.php' method='POST'>
    <input type='hidden' name='id' value='7' /><button class='ui-state-default ui-corner-all' title='Edit'><span class='ui-icon ui-icon-pencil'></span></button>
</form></td> 

<td><form action='#' method='POST' id='formdelete'>
    <input type='hidden' name='product' value='7' /><button class='ui-state-default ui-corner-all' id='delete' title='Delete'><span class='ui-icon ui-icon-trash'></span></button>
</form></td>

</tr>

//and then this line of the table is repeated all over again, with different values on each iteration

</table>

编辑 问题解决了。我将 id delete 更改为一个类,并从 js 中删除了 buttonClicked 标志。

 $(function(){             
      $('.delete').click(function(event){
          event.preventDefault();
          $('#dialogConfirm').dialog('open');       
      });                     

      $('#dialogConfirm').dialog({
         autoOpen: false,
         modal: true,
         width: 250,
         height: 225,
         buttons: {
             "Não": function() { 
                 $(this).dialog('close');},
             "Sim": function() {                       
                 $(this).dialog('close');                                         
                 document.forms['formdelete'].submit();
             }
         }            
      });          
   });

【问题讨论】:

  • 可以发布生成的 HTML 吗?
  • @j08691 我用生成的代码编辑了帖子:)
  • 发布新的 HTML 代码后,您会说那段 HTML 会一遍又一遍地重复。这是否包括带有删除 ID 的删除按钮?如果是这样,您就不能在文档中重复使用 ID。 ID 必须是唯一的。你也许可以把它变成一门课。
  • 谢谢 :) 我没有注意到这一点。我将 id 更改为 classes 并删除了一个无用的标志,现在它工作正常。

标签: forms jquery-ui jquery-ui-dialog


【解决方案1】:

将您的代码更改为:

$('#delete').click(function(event){
    event.preventDefault(); //take event.preventDefault() out of if statement
    if(!buttonClicked){
        $('#dialogConfirm').dialog('open');                  
     }              
 });   

它不会第二次阻止默认行为,因为在 buttonClicked 变量更改为 true 之后它没有运行 if 语句。表单只是在没有dialog 的情况下提交。

dialog 不会再次打开,因为当在dialog 中单击YesbuttonClicked 标志为true

很难从代码中看出buttonClicked 标志的用途是什么。

【讨论】:

  • @j4m 这是你的if 声明。 dialog 未打开,因为您在 dialog 中单击 Yes 时将 buttonClicked 设置为 true
  • buttonClicked 确实没用。点击事件足以触发对话框。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2023-04-04
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多