0

可能重复:
如何在 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);
                }
                });
            });
});
4

1 回答 1

0

我在本地系统中尝试过有关 jquery easy confirm 的示例,发现其中有错误。所以我不再担心这个问题并使用了 jConfirm

于 2012-04-26T10:57:06.707 回答