嗨,我有一个锚点,我正在尝试使用JConfirm盒子,但它刚刚弹出并消失。锚中有一个带有“X”
的图像onclick='jConfirm("Do you really want to do that?.\n ","Import",
e.preventDefault();
if(!ans) {
return false;
}
});'>
答案 0 :(得分:0)
尝试此操作(未经测试)...想一想代码中的ans
是什么?
jConfirm('Do you really want to do that?', 'Import', function(ans) {
if(!ans) {
return false;
}
});
使用delegate
或on
执行此操作总是更干净,而不是内联...
答案 1 :(得分: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;
}
})
});