本文介绍了单击提交按钮后如何显示jQuery消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是jquery的新手,想学习如何在单击提交"按钮后显示一条消息(例如,请等待绿色或提交).
I am new to jquery and would like to learn how to show a message (e.x please wait in green color or submitting ) after clicking on the submit button.
可以请你帮忙
推荐答案
这可能会有所帮助:
$('#submitButtonID').click(function(){
alert('Please wait while form is submitting');
$('#formID').submit();
});
这篇关于单击提交按钮后如何显示jQuery消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!