作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!