在表单提交时添加 jquery 预加载器
我使用 jquery 和 AJAX 异步提交表单。请参阅下面的代码,
$("#save_report").click(function()
{
$.ajax({
url : actionOfForm,
type : $('#custom_targeting_param_form').attr("method"),
data : $('#custom_targeting_param_form').serialize(),
success : function(){
alert('Report Saved successfully');
$("#showOrExportCustomTargetingReport").val('showReport');
}
});
return false;
});
我的 html 中有一个 ID 为 save_report 的链接,单击该链接时,将对作为 actionOfForm 传递的 URL 进行 Ajax 调用变量如上所示。
直到这一切都很好。但现在我想在后台提交表单时获得像 loading.. 这样的预加载器图像/文本。我想在警报框中显示它,而不是在我的 html 上...
因为我是新用户,很抱歉无法发布图像,但我希望我可以理解
一旦提交表单完成后,预加载器图像将消失并替换为成功消息警报。
你能帮我解决这个问题吗?
I am asynchronously submitting my form using jquery and AJAX . Refer the code below
$("#save_report").click(function()
{
$.ajax({
url : actionOfForm,
type : $('#custom_targeting_param_form').attr("method"),
data : $('#custom_targeting_param_form').serialize(),
success : function(){
alert('Report Saved successfully');
$("#showOrExportCustomTargetingReport").val('showReport');
}
});
return false;
});
I have got a link in my html with the id save_report and on clicking the link an Ajax call is being made to the URL which is passed as the actionOfForm variable as shown above.
Till this everything is fine. But now I want to get a preloader image/text like loading.. while the form submission is taking place in the background . And I want to show it in an alert box , not on my html ...
as i am a new user sorry for not able to post the image, but i hope i am comprehendable
Once the form submission is done , the preloader image will be gone and replaced with the success message alert.
Can you please help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以将你的图像放在一个 div 中..最初隐藏它..
然后单击你的链接(在 AJAX 调用上)..在页面顶部显示此 div(你必须为此使用一些 css 属性)。喜欢这-
i think you can have your image in a div..intially hide it..
then on click on your link(on AJAX call)..show this div on top of page(you have to use some css property for this).like this-