gpt4 book ai didi

javascript - 如何显示加载...直到整个向导加载到 jQuery-steps 插件中?

转载 作者:行者123 更新时间:2023-11-30 09:54:54 25 4
gpt4 key购买 nike

我正在为我的向导类型表单使用 jQuery-steps 插件。我想显示正在加载...动画,直到整个向导完全加载。插件中为此提供了标签。我只是不知道如何启用它。

有什么猜测吗?

编辑:

这是我生成向导表单的代码

$(function () {
$("#wizard").steps({
headerTag: "h2",
bodyTag: "form",
saveState: true,
transitionEffect: "slideLeft",
onStepChanging: function stepChange(event, currentIndex, newIndex) {
if (currentIndex > newIndex) {
for(i=currentIndex;i>0;i--){
$("#sec"+i+"override").val(true);
}
return true;
}

e=event;
ci=currentIndex;
ni=newIndex;
var form = $('#wizard-p-'+currentIndex);
form.validate().settings.ignore = ":disabled,:hidden:not('.hiddenField')";
var res = form.valid();
if(res) {
var ress = form.submit();
if(check) {
return true ;
} else {
popup();
}
}
},
onFinishing: function(event, currentIndex) {
ci=currentIndex;
var form = $('#wizard-p-'+currentIndex);
form.validate().settings.ignore = ":disabled,:hidden:not('.hiddenField')";
var res = form.valid();
if(res) {
var ress = form.submit();
if(check) {
return true;
} else {
popup();
}
}
},
onFinished: function(event, currentIndex) {
<%
UserDTO user = UserUtils.getLoggedInUser();
if(user!=null){
if(user.getIsAdmin()){
%>
window.location = "<%=application.getContextPath()%>/projects";
<%
} else {
%>
window.location = "<%=application.getContextPath()%>/home";
<%
}
}
%>
$.cookie('jQu3ry_5teps_St@te_' + $( this ).data( "uid" ), '' );
}
});
});

现在问题是它工作得很好,但是在加载整个表单时它首先显示部分标题然后加载表单,这看起来不太好。我只想显示正在加载...动画,直到整个表单加载完毕。

最佳答案

如果我正确理解了这个问题......表单在页面加载后加载了一点,导致用户在按步骤初始化表单之前查看表单。如果是这种情况,您可以添加一个包含加载动画的额外 div,并且在页面加载时不显示您的表单...

<div id="loadingIcon">
<img src="images/loading.gif"/>
</div>
<div id="wizard" style="display: none;">
<%-- FORM HERE --%>
</div>

然后在您的 onload 函数中,隐藏加载图标并显示表单。

$(function () {
$("#wizard").steps({
// Steps
});
$('#loadingIcon').hide();
$('#wizard').show();
});

关于javascript - 如何显示加载...直到整个向导加载到 jQuery-steps 插件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34530001/

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