提交表单时关闭fancybox

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提交表单时关闭fancybox相关的知识,希望对你有一定的参考价值。

  1. /* Close the fancybox when you submit a form
  2.  */
  3. $('#myform').submit(function(){
  4. $.fancybox.close();
  5. return false;
  6. });
  7.  
  8. /* Here's another approach,
  9.  * but this time we're tied to the submit button
  10.  */
  11.  
  12. $('#submit_button').click(function(){
  13. $.fancybox.close();
  14. return false;
  15. });

以上是关于提交表单时关闭fancybox的主要内容,如果未能解决你的问题,请参考以下文章

在表单提交和使用ajax处理之前关闭fancybox。

Ajax提交后如何关闭fancybox?

带有 Fancybox 中的提交表单的 iframe 未发布数据

如何将表单数据发送到fancybox模式窗口

如何在 on_sent_ok 或 fancybox 关闭时使用 Wordpress contant form 7 和花式框显示特定部分

表单验证成功后显示 Fancybox