mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-06-07 10:22:38 +08:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
$(function()
|
|
{
|
|
$('.submit-delete-modal').on('click', function()
|
|
{
|
|
var $modal = $('#plugins-delete-modal');
|
|
$modal.find('button.submit-ajax').attr('data-id', $(this).data('id'));
|
|
$modal.modal('open');
|
|
});
|
|
}); |