gpt4 book ai didi

javascript - 如何组合两个 jQuery 函数?

转载 作者:行者123 更新时间:2023-11-30 18:39:10 24 4
gpt4 key购买 nike

第一个函数(可以在 http://nadiana.com/jquery-confirm-plugin 找到):

 $('#confirm').confirm(
{
msg: 'You are about to delete gallery and all images related to that gallery. Are you sure?<br>',
buttons: {
separator: ' - '
}
}
);

基本上有是/否问题,如果你回答是,它会继续进行。

第二个功能:

$(document).ready(function() {
$('#load').hide();
});
$(function() {
$(".delete").click(function() {
$('#load').fadeIn();
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'id='+ id ;

$.ajax({
url: "<?php echo site_url('gallery/delete_image') ?>",
type: "POST",
data: string,
cache: false,
success: function(){
commentContainer.slideUp('slow', function() {$(this).remove();});
$('#load').fadeOut();
}
});
return false;
});
});

此函数用于删除图像。我怎样才能结合这两个功能?首先我要问问题,如果是点击继续删除。

最佳答案

根据您链接到的文档,您只需对操作和确认使用相同的选择器:

$(document).ready(function() {
$('#load').hide();

$(".delete").click(function() {
$('#load').fadeIn();
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'id='+ id ;

$.ajax({
url: "<?php echo site_url('gallery/delete_image') ?>",
type: "POST",
data: string,
cache: false,
success: function(){
commentContainer.slideUp('slow', function() {$(this).remove();});
$('#load').fadeOut();
}
});
return false;
});



$('.delete').confirm(
{
msg: 'You are about to delete gallery and all images related to that gallery. Are you sure?<br>',
buttons: {
separator: ' - '
}
});
});

关于javascript - 如何组合两个 jQuery 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7362839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com