使用 ajax 的 Drupal 联系表
我需要通过 ajax 发送联系表单,然后显示弹出消息。
例如,如果我将表单 POST 数据发送到某个 url,它应该响应“OK”或“FAIL”
I need to send my contact form via ajax and then show pop-up message.
For example if I'll send form POST data to some url it should response with "OK" or "FAIL"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Drupal 6
有一个用于ajax提交的模块
http://drupal.org/project/ajaxsubmit
这会将您的表单行为更改为 ajax。
Drupal 7核心集成了它。
Drupal 6
A module is there for ajax submition
http://drupal.org/project/ajaxsubmit
That will change your form behavior to ajax.
Drupal 7 core integrated it.
使用JQuery Form插件,实现起来非常简单实用:http://jquery.malsup。 com/form/#getting-started
Use the JQuery Form plugin, it's very easy and practical to implement: http://jquery.malsup.com/form/#getting-started
您可以使用ajax模块(http://drupal.org/project/ajax)来ajax化您的表单,显示弹出窗口,使用像bettermessages这样的模块,或者咆哮或类似的东西。
约书亚
you can use the ajax module(http://drupal.org/project/ajax) to ajaxify your form, to show the popup, use a module like bettermessages, or growl or something of the sort.
Joshua