gpt4 book ai didi

php - 如何在点击后几秒钟后显示引导灯箱

转载 作者:行者123 更新时间:2023-12-01 03:32:53 25 4
gpt4 key购买 nike

我正在制作一个画廊,其中我必须在每个图像上显示灯箱 - 所以我希望在该灯箱中出现一些延迟

有什么办法可以做到这一点吗?

代码:

$(document).on('click', '.varr', function() {
var post_id = $(this).attr('data-id');
$.ajax({
url: "<?php echo get_template_directory_uri(); ?>/post-result.php",
type: 'POST',
dataType: "html",
data: {
post_id: post_id
},
success: function(response) {
//$('#loaddata').html(response);
$('#loaddata').html(response);
// alert(response)
}
});
setTimeout(function() {
$('.remodal').modal('hide');
}, 3000);

})

最佳答案

您可以添加此脚本:

   <script>
$(document).on( 'click', '.varr', function() {
//Put Loader here
$('#loaddata').html("");
var post_id = $(this).attr('data-id');
$.ajax({
url : "<?php echo get_template_directory_uri(); ?>/post-result.php",
type : 'POST',
dataType: "html",
data : { post_id : post_id },
success : function( response ) {
//Remove loader here
$('#loaddata').html( response );

}
});
})
</script>

希望它对你有用!!

关于php - 如何在点击后几秒钟后显示引导灯箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44822177/

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