如何在jquery中传递变量容易确认

时间:2012-04-20 08:03:22

标签: 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);
                }
                });
            });
});

2 个答案:

答案 0 :(得分:0)

我想您需要查找按“是”或“否”按钮时会发生的回调。我会用http://tutorialzine.com/2010/12/better-confirm-box-jquery-css3/你可以看到: 'action': function(){}您在按“是”或“否”后指定要执行的操作

答案 1 :(得分:0)

我已经尝试过关于jquery的示例,在本地系统中发现容易确认的bug。所以我已经不再担心这个问题而且使用了jConfirm。