jQuery在简单的情况下确认替换

时间:2012-11-26 20:21:14

标签: c# jquery asp.net visual-studio-2010 confirm

如何用这个jQuery替换下面的代码确认:
jQuery Alert Dialogs (Alert, Confirm, & Prompt Replacements)

和代码:

OnClientClick="javascript:if(!confirm('Are you sure you want to delete this row?')){return false;}

和jQuery的确认代码:

jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
    jAlert('Confirmed: ' + r, 'Confirmation Results');
});

我测试了很多没有结果的方法...... 提前谢谢

1 个答案:

答案 0 :(得分:0)

this question的已接受答案描述了使用jquery / jquery ui实现确认提示的一种方法