传递变量以单击函数jquery easy confirm
通过使用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);
}
});
});
});
答案 0 :(得分:0)
我已经尝试过关于jquery的示例,在本地系统中发现容易确认的bug。所以我已经不再担心这个问题并使用 jConfirm 。