0

嗨,我有一个锚点,我正在尝试使用 JConfirm 框,但它只是弹出并消失。锚点中有一个带有“X”的图像

onclick='jConfirm("Do you really want to do that?.\n ","Import",
    e.preventDefault(); 
    if(!ans) {                                                      
    return false;
     }
});'>
4

2 回答 2

0

试试这个(未经测试)......想想ans你的代码中有什么?

jConfirm('Do you really want to do that?', 'Import', function(ans) {
    if(!ans) {                                                      
    return false;
     }
  });

delegate此外,使用或on而不是内联执行此操作总是更清洁......

于 2013-03-21T18:40:32.643 回答
0

这有效

$('.deleteconfirm').click(function(e)
                                {
                                link = this;
                                url=link.getAttribute('href')
                                e.preventDefault();
                                jConfirm(("Delete this Report Association?"),'Report',function(confirmed)
                                {
                                    if(confirmed)
                                        {
                                        window.location =url;                                   
                                        }
                                })
                                            });
于 2013-03-22T15:17:26.957 回答