全功能 jquery 表单提交按钮
您能否提供一个 jquery 表单提交按钮的完整示例,其中:
按钮按下时会改变外观,并且还会显示“请等待”正确的时间。
在表单上使用它是安全的
如果可能的话,如果有人禁用了 javascript,它仍然可以工作(我意识到这可能是不可能的,但如果有的话那就太好了)。
非常感谢
Can you please supply a full example of a jquery form submit button where:
the button changes appearance when pushed down, and also shows "please wait" for the correct time.
it's safe for use on forms
if possible, it will still work if someone has javascript disabled (I realize this may not be possible, but would be a nice to have).
Thanks much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Jquery 就可以了。
首先,构建一个普通表单,为
然后将处理程序绑定到#someform:
无论有没有 js 支持,它都可以工作。
Jquery will do just fine.
First you build a normal form, give the
<form>
tag an id, say#someform
, and an id to the submit button, say#somebutton
.Then you bind an handler to
#someform
:It will work with or without js support.