这是我的表格的示例,我有 2 个图标用于编辑操作和删除。删除时,我想弹出一个确认对话框。它仅在我单击第一行的删除图标时才有效。
对于其他行,缺少 jQuery 事件(不起作用)。
这是我的 .php 编码文件。
<tbody>
//data connection with db
while ($row = mysql_fetch_array ($res))
{
//data rows
?>
<tr class="odd" role="row" id="row_5">
<td align="center">
<a href="#"><img src="../images/sys_icon_edit.png" width="20" height="20" alt="Edit"></a>
<a id="id-btn-dialog2" href="#"><img src="../images/icon_trash.png" width="20" height="20" alt="Delete"></a>
</td>
//other data fields here
</tr>
<?php
}
?>
</tbody>
这是与之相关的jquery。
jQuery(function($) {
$( "#id-btn-dialog2" ).on('click', function(e) {e.preventDefault();
$( "#dialog-confirm" ).removeClass('hide').dialog({
resizable: false,
width: '320',
modal: true,
title_html: true,
buttons: [{
html: " Delete ",
"class" : "btn btn-danger btn-minier",
click: function() {
$( this ).dialog( "close" );
}},
{
html: " Cancel ",
"class" : "btn btn-minier",
click: function() {
$( this ).dialog( "close" );
}
}]
});
});
})
请帮帮我我该怎么做?我只是 php、jQuery 和 javascript 的初学者。
那个 jQuery 代码是我在互联网上找到的,我只是更改了标题文本,而不是功能代码。
提前致谢。