我正在尝试为 jquery 实现这个内联删除确认插件。这是示例代码:
//sample code taken from plugin on GitHub:
//https://github.com/fredwu/jquery-inline-confirmation
$("a.delete").inlineConfirmation({
confirm: "<a href='#' class='confirm-yes'>Yes</a>",
cancel: "<a href='#' class='confirm-no'>No</a>",
separator: " | ",
reverse: true,
bindsOnEvent: "hover",
confirmCallback: function(action) {
action.parent().fadeIn();
}
});
将其附加到任何选择器将显示删除或取消按钮,但我需要在单击时显示此选项。
所以我的原始代码是这样的:
jQuery( document ).ready( function( $ ) {
$( '#mytable button').click( function( event ) {
event.preventDefault();
if ( ! confirm( 'Are you sure you want to continue' ) )
return;
var $button = $(this);
var nonce = $( this ).attr('data-nonce');
var rowID = $( this ).attr('value');
var file = $( this ).attr('file');
var data = { }
$.post(
ajaxurl,
data,
function ( response ) { });
});
});
该插件允许“确认回调”,我需要在确认点击时执行我的代码,而不是像现在这样立即执行。我还在学习 jQuery,所以这可能是一个简单的问题。只需要知道如何自定义它,所以它是这样的:
jQuery( document ).ready( function( $ ) {
$( '#mytable button').click( function( event ) {
$(this).inlineConfirmation({
confirmCallback: (?? WHAT DO I PUT HERE??)
});
如果确认然后运行我的代码(这将是confirmCallback。我该怎么做?.post ...等...