gpt4 book ai didi

javascript - JQuery函数添加进度动画

转载 作者:行者123 更新时间:2023-12-02 19:50:55 25 4
gpt4 key购买 nike

我想向函数添加进度动画,以便它在函数开始时显示,然后在函数结束时消失。

类似于:

<script type="text/javascript">
function myfunction() {
//Display progress animation here
$('input[type=submit]#submit').click();
etc...
//Hide the progress animation here
}
?>

更新:

这是我当前的 Ajax 代码:

<script type="text/javascript">
function myfunction() {
$("#ajax-form").submit(function(){
$.post("submit.php",
$("#ajax-form").serialize(),
function(data){
mysubmitForm();

}

);
return false;

});
}
</script>

最佳答案

anix 说的:

<div class="loader">Loading...</div>

<script type="text/javascript">

$(function(){

$.ajax({
url: 'the url',
data: {},
success: function() {
$('.loader').fadeOut();
}
});
});

</script>
<小时/>

更新:

<script type="text/javascript">

function myfunction() {

$("#ajax-form").submit(function(){
//show loader here
$.post("submit.php", $("#ajax-form").serialize(),
function(data){
mysubmitForm();
//and hide it here
}

);
return false;

});

}

关于javascript - JQuery函数添加进度动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9313423/

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