我如何用这个 jQuery Confirm 替换下面的代码:
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');
});
我测试了很多方法都没有结果...
在此先感谢