我有以下代码用于 Yii 框架来删除一个寄存器。此代码是自动生成的,我想捕获它是否在对话框打开时提交。如果 ajax 完成,我将保存在我的用户日志中。
jQuery(function($) {
jQuery('body').on('click','#yt0', function(){
if (confirm('Want to delete it?')) {
jQuery.yii.submitForm(this,'/yiiProject/index.php?r=project/delete&id=168',{});
return false;
}
else
return false;
});
jQuery('body').tooltip({'selector':'a[rel=tooltip]'});
jQuery('body').popover({'selector':'a[rel=popover]'});
});