目的是显示一个表单,该表单将使用结果更新页面上的 div
The aim is to show a form which will update the div on the page with the result
提交时,如果表单被隐藏,结果不会显示在 div 中.
When submitting, the result does not show in the div if the form had been hidden.
添加以下答案中建议的代码后,我显示表单,它被提交,但数据没有出现在 div 中我将 ajaxForm 作为目标
after adding the code suggested in the below answers, I show the form, it gets submitted, but the data is not appearing in the div I give the ajaxForm as target
[Here] 与在 div 中显示结果的形式相同
[Here] is the same form that does show the result in the div
谢谢
当你提交表单时,请求被发送到服务器,你得到一个 HTTP 错误:405 Method Not Allowed.
When you submit the form, the request is sent to the server and you obtain a HTTP Error: 405 Method Not Allowed.
看起来它来自您服务器的配置.http://www.checkupdown.com/status/E405.html
It looks like it comes from the configuration of your server. http://www.checkupdown.com/status/E405.html
由于您的代码适用于 facy.html 页面中的示例,我认为它并不是真正来自服务器.两个例子的区别在于表单的action.
as your code works for your example in the facy.html page I think it doesn't really comes from the server. The difference between the two examples are the action of the form.
您是否尝试将您的 thank you 页面称为thanks.php"并相应地修改表单的 action.我想您的服务器可能不允许 HTML 页面上的 POST 请求.
Did you try to call your thank you page "thanks.php" and modify the action of your form accordingly. I suppose that your server might not allow POST request on an HTML page.
这篇关于jQuery插件冲突 - 请协助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
用于创建头像的 jQuery/JavaScript 库?jQuery/JavaScript Library for avatar creation?(用于创建头像的 jQuery/JavaScript 库?)
如何做以下掩码输入问题?How to do following mask input problem?(如何做以下掩码输入问题?)
使用 DropKick Javascript 设置值/标签的问题Issues Setting Value/Label Using DropKick Javascript(使用 DropKick Javascript 设置值/标签的问题)
如何对 jquery 插件中的私有方法进行单元测试?how to unit-test private methods in jquery plugins?(如何对 jquery 插件中的私有方法进行单元测试?)
stellar.js - 为垂直滚动网站配置偏移量/对齐元素stellar.js - configuring offsets / aligning elements for a vertical scrolling website?(stellar.js - 为垂直滚动网站配置偏移量/对齐元素?)
jQuery 屏蔽输入插件.当文本框获得焦点时选择所有jQuery masked input plugin. select all content when textbox receives focus(jQuery 屏蔽输入插件.当文本框获得焦点时选择所有内容)