gpt4 book ai didi

php - 想要显示ajax加载gif

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

我正在使用数据表。我的所有代码都工作正常。现在我想把ajax加载gif。谁能帮我放ajax加载器gif吗?这是我的代码。谢谢

         <script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("#dvloader").show();
oTable = $('#example').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
} );
(document).ready(function() {
$("#btnround").click(function(){
$.ajax({
url: "ajax_request.php",
cache: false,
async: true,
data: "shape=ROUND",
success: function(html){
$(".demo_jui").html(html);
}
});
});
});
</script>

最佳答案

使用

ajaxStart()

ajaxComplete()

显示和隐藏加载 gif 的功能。

$("#loading").ajaxStart(function(){
$(this).show();
});

$("#loading").ajaxComplete(function(){
$(this).hide();
});

而带有 id 的 div 或元素

loading

有加载 gif。

您的最终代码应如下所示:

<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("#dvloader").show();
oTable = $('#example').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
});
(document).ready(function() {
$("#btnround").click(function() {
$.ajax({
url: "ajax_request.php",
cache: false,
async: true,
data: "shape=ROUND",
success: function(html) {
$(".demo_jui").html(html);
}
});
});
$("#loading").ajaxStart(function(){
$(this).show();
});

$("#loading").ajaxComplete(function(){
$(this).hide();
});

});
</script>

关于php - 想要显示ajax加载gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5617660/

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