很多页面用到的模态对话框,如知明网站https://dig.chouti.com/的登录页都是模态对话框, 当点登录时,是用的ajax提交,因为输入错了信息,有返回消息,而页面没有刷新. jquery ajax格式: $.ajax({ 'url':'/orm', 'type':'post', 'data':{'id':1,'name':'hhh'}, success:function (data) { alert(data); }})url是提交到那个地址 type是提交方法 data是要提交的