您能为联系表单 7 添加验证后 javascript 回调吗?
提交表单后,如果用户未能输入必填字段,我想添加其他 javascript 功能,但在验证/发布表单后无法弄清楚在哪里添加我自己的自定义回调。
在不破解模块的情况下这可能吗?
谢谢, 格雷格
After the form is submitted if the user failed to enter the required fields I want to add additional javascript goodies, but can't figure out where to add my own custom callback after the form has been validated/posted.
Is this possible without hacking the module?
Thanks,
Greg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该插件似乎使用 JavaScript 验证,因此您可以通过挂钩提交事件(例如)来添加自己的自定义 JavaScript 验证。由于这是 JavaScript,因此您不会破解该模块。
我建议使用 Firebug 或其他一些 DOM 检查器来确定绑定事件的最佳位置。
另外,请查看插件文档。还有一个论坛可以提供更具体的帮助。
This plugin seems to use JavaScript validation, so you could add your own custom JavaScript validation by hooking into the submit event (for example). Since this is JavaScript, you won't be hacking the module.
I suggest using Firebug, or some other DOM inspector, to determine the best place to bind your events.
Also, check out the plugin docs. There is also a forum which may provide more specific help.