html 表单提交后显示弹出窗口

Posted

tags:

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

<!-- Paste the following code under Settings - HTML/CSS, HEAD -->

<style>
  #submit-in-progress-popup,
  #submit-success-popup {
	    display: none !important;
}
</style>
  
<!-- Paste the following code under Settings - JavaScript, FOOTER -->

<script>
    // Make sure you name the button that will contain the popup -> "popup"
    var popupButton = $('.popup-link:contains(popup)');		
    window.instapageFormSubmitSuccess = function( form ){
    	popupButton[0].click();
    };
</script>

以上是关于html 表单提交后显示弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章

在提交表单之前显示弹出窗口/模式以进行确认

在提交实际表单之前接受弹出窗口中的输入

提交表单后模态弹出窗口未正确关闭

怎么写程序使提交表单后弹出框显示成功或失败,页面不跳转?

从弹出窗口在父窗口中提交表单?

如何在单击 CF7 提交按钮时在弹出窗口中显示 grecaptcha?