可能重复:
如何在 jquery 中轻松传递变量确认
传递变量以单击函数 jquery 轻松确认
通过使用 javascript confim,我已经完成了暂停。现在我想把它变成 jquery 容易确认我该怎么做
我的 PHP 代码(此函数在循环中调用):
function prepareRow( $flag, $Id )
{
$rowResponse = '<tr>
<td style="width:12%"> ' . $Id . ' </td>
<td><a href="javascript:void(0);" id="suspend" ></a> </td>
</tr>';
return $rowResponse
}
Jquery 轻松确认链接:http ://projectshadowlight.org/jquery-easy-confirm-dialog/
我试过这样,但如果点击“是”,我想将“ $id ”传递给它。这样我就可以暂停行。
请帮帮我
$("#suspend").easyconfirm({locale: {
title: 'Are you sure?',
text: 'Are you sure, you want to suspend?',
button: ['No',' Yes'],
closeText: 'Close'
}});
$("#suspend").click(function() {
$.post("suspend.php", { "Id" : Id },
function(data){
$.ajax({
type:"POST",
url: "prepareTable.php",
success: function(data){
$("#example").html(data);
}
});
});
});