自定义确认弹出窗口无法正常工作

时间:2013-12-17 13:40:37

标签: javascript jquery html css popup

我正在使用插件来自定义确认弹出窗口。我能够自定义确认弹出窗口,但问题是当我单击删除图标时,自定义确认弹出窗口打开,在给出“{之前”立即删除该条目{1}}“或”ok“。

我使用的插件来自此网址 - > http://labs.abeautifulsite.net/archived/jquery-alerts/demo/

我的代码看起来像,

cancel

需要帮助。

2 个答案:

答案 0 :(得分:1)

您是否注意到该功能的使用在他们的演示中有所不同?试试这个:

jConfirm("Do you want to delete this feed?", 'Confirmation Dialog', function(r) {
    if (r) {
        $.post(url+'feeds/delete/',
        {
            feedid: feed_id
        }
        , function(response) {
            window.location.replace(url+'feeds/index');
        });
    }
});

答案 1 :(得分:0)

试试这个:

jConfirm('Do you want to delete this feed?', 'Confirmation Dialog', function(r) 
    {
        if (r) 
       {
            $.post(url+'feeds/delete/',
            {
                feedid: feed_id
            }, 
            function(response) {
                window.location.replace(url+'feeds/index');
            });
        }
    });