jQuery(document).ready(function($) {
// データを追加
$(‘#add-data’).click(function() {
var data = $(‘#data-input’).val();
$.post(my_custom_plugin_ajax.ajax_url, {
action: ‘my_custom_plugin’,
action: ‘add_data’,
data: data
}, function(response) {
// 成功時の処理
});
});
// データを取得
$(‘#get-data’).click(function() {
$.post(my_custom_plugin_ajax.ajax_url, {
action: ‘my_custom_plugin’,
action: ‘get_data’
}, function(response) {
if (response.success) {
// データを表示
console.log(response.data);
}
});
});
// データを削除
$(‘#delete-data’).click(function() {
var id = $(this).data(‘id’);
$.post(my_custom_plugin_ajax.ajax_url, {
action: ‘my_custom_plugin’,
action: ‘delete_data’,
id: id
}, function(response) {
// 成功時の処理
});
});
});
