gpt4 book ai didi

php - 如何将复选框id添加到模态框?

转载 作者:行者123 更新时间:2023-12-01 06:05:35 25 4
gpt4 key购买 nike

Possible Duplicate:
How to pass checkbox id to the modal box?

我有一个表格,每行都有一个复选框和一个按钮。每当按下按钮时,就会出现一个模式框,同时复选框也会被选中。

模式框将询问用户是否要删除特定记录。如果是,将提交表格。如果否,该复选框将被取消选中。

我在取消选中该复选框时遇到问题。任何人都可以协助提供示例代码吗?如何将复选框 ID 传递给模式框,以便可以取消选中该特定复选框?

谢谢。

     var buttons3 = $("#yns button").click(function(e) { 
// get user input
var yes = buttons3.index(this) === 0;
if (yes){
$('form#form1').submit();
return true;
}
else{
//How to get the particular Checkbox id so that it can be unchecked?

$(this).dialog("close");

return false;

}

});

我的模态框 Html:

<div class="widget modal2" id="yns"> <header>
<h2>Confirmation</h2></header> <section>
<p> Do you want to delete this item? </p> <!-- yes/no buttons --> <p>
<button class="button" type="button">Yes</button>
<button class="button" type="button">No</button>
</p> </section> </div>

我的表格 HTML:

<tr>                                        
<td><input type="checkbox" id="measure<?php echo $count;?>
" name="measureid[]" value="<?php echo $items>"></td>
<td><?php echo $Name;?></td>
<td>
<ul id="tip" class="abuttons">
<li><a class="button"><span class="edit" title="Edit"></span></a></li>
<li><a rel="#yns" id="unitbtn<?php echo $count;?>" class="modalInput button">
<span class="delete" title="Delete"></span></a></li>
</ul>
</td>
</tr>

同一个 php 页面中的模态和表格。

最佳答案

也许一种简单的方法是,如果用户单击“否”,则取消选中表格中的每个复选框。

关于php - 如何将复选框id添加到模态框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6805540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com